how can u create zero observation dataset?
Answers were Sorted based on User's Feedback
Answer / chandra sekar
Use the following step
data test;
delete;
run;
| Is This Answer Correct ? | 15 Yes | 3 No |
creating a data set by using the like clause.
ex: proc sql;
create table latha.emp like oracle.emp;
quit;
in this the like clause triggers the existing table
structure to be copied to the new table.using this method
result in the creation of an empty table.
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / nagendra
data class;
set sashelp.class;
if _n_ >= Then delete;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vishnu
for example
data vishnu;
length name $ age ;
run;
proc print data=vishnu;
run;
| Is This Answer Correct ? | 7 Yes | 11 No |
How do you delete duplicate observations in sas?
Hot to suppress characters from a given string?
In ARRAY processing, what does the DIM function do?
how do you pull data from equifax?tell me the process?
0 Answers Synchrony Financial,
what is treatment emergent events and treatment emregent adverse event
What do you know about symput and symget?
What do you feel about hardcoding?
what is the diff. b/w proc means and proc summary?
What are the different versions of sas that you have used until now? : sas-grid-administration
what is the primary data source for the wrs? : Sas-bi
what is TAB delimiter? explain about it? what will you do to get TAB delimiter?
Compare sas with other data analytics tools.