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
Difference between sum function and using “+” operator?
Which function is used to count the number of intervals between two sas dates?
How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?
What are the best sas programming practices for handling very large datasets? : sas-grid-administration
What does proc print, and proc contents are used for?
How would you identify a macro variable? : sas-macro
What is connection profile? : sas-grid-administration
Given an unsorted data set, how to read the last observation to a new data set?
How will you use the WHO Drug Dictionary for Reporting Clinical Trials?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
What is the function of output statement in a SAS Program?
what are the component of range? : Sas-bi
What is a pdv and what are its functions?
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
How do you specify the number of iterations and specific condition within a single do loop?