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
Answer Posted / sureshkv
data char;
set master;
keep _character_;
run;
data num;
set master;
keep _numeric_;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Which command is used to perform sorting in sas program?
Explain why double trailing @@ is used in input statement?
What are the applications primarily used by business analyst? : Sas-bi
what is the use of proc contents and proc print in sas? : Sas-administrator
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
Explain translate function?
Given an unsorted data set, how to read the last observation to a new data set?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
What are the default statistics that proc means produce?
what can you learn from the sas log when debugging? : Sas programming
Explain what is SAS informats?
What is the use of divide function?
What do you understand by the term Normal Distribution?
what is scheduling and how will u implement it. In scheduling 5 jobs r running if there is an error occured at 3rd job and how will u check and waht necessary steps will u take not to repeat the same mistake
what is business intelligence? : Sas-bi