data jagan1.s;
input bp$;
cards;
100/90
120/89
112/87
run;
in the above code how to convert character data values to numeric data values?
Answer Posted / aaaa
data jagan1.s;
infile cards dlm='/' dsd;
input b p;
cards;
100/90
120/89
112/87
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
what are _numeric_ and _character_ and what do they do? : Sas programming
How would you identify a macro variable?
What is the purpose of trailing @ and @@? How do you use them?
how does sas handle missing values in sort order? : Sas programming
Explain data_null_?
How to create a permanent sas data set?
What was the last computer book you purchased? Why?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
is data integration and etl programming is same? : Sas-di
What is a put statement?
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
Of all your work, where have you been the most successful?
Explain how you can debug and test your SAS program?
what are the considerations when picking a SAS/STAT procedure?