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 |
explain the difference between proc means and proc summary?
What is the purpose of the trailing and How would you use them?
how does sas handle missing values in assignment statements? : Sas programming
who is the best SAS clinical Trainer in Hyderabad?
is QUALCOMM using SAS ?
Can you use a macro within another macro? If so how would SAS know where the current acro ended and the new one began?
What is the one statement to set the criteria of data that can be coded in any step?
how many data types in sas? : Sas-administrator
What is SAS?
What is the difference between informat and format statement?
SAS System ?
If you set a label in the data step and call a proc freq on the data, how do you display the data without the labels and just the variables.