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 |
What is the difference between nodupkey and nodup options?
how do u test a pros sql(works or not) without executing it?
what are input dataset and output dataset options?
Is it possible to do sorting tranformation in charecter variable??if can tell me one eg..
what is ae onset date n what is RDS
describe about metadata object? : Sas-di
What are the 3 components in sas programming?
Mention what is the difference between nodupkey and nodup options?
what is syntax of proc merge ?
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
what are some differences between proc summary and proc means? : Sas programming