Hi im new to sas. I have a file with some charecter variables and some numeric variables
now i want to load charecter variables into one datastep and numeric variables into another data step pls let me know
Thanks
Answers were Sorted based on User's Feedback
data a;
infile "C:Documents and SettingssasadmDesktopSASMacro est1.txt" firstobs=2;
input num1 num2 num3 c1$ c2$ num4 c3$;
run;
data b;
set a;
keep _numeric_;
run;
data c;
set a;
keep _character_;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Approximately what date is represented by the SAS date value of 730?
how would you create multiple observations from a single observation? : Sas programming
What versions of SAS have you used (on which platforms)?
If i doest required Cumilative frequency in my table, generated by using PROC FREQ what i had to do?
Do you need to rearrange the order of the data for the report?
How would you remove a format that has been permanently associated with a variable? ________________
How to get top scorer student from a class-table having different sections A,B, C & D? Each section having same number of students.
Differentiate between ceil and floor functions.
Can you suggest us materials for sdtm mapping?
Mention what is the difference between nodupkey and nodup options?
name some data transformation used in sas di? : Sas-di
What is instream data in SAS?