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?
Answers were Sorted based on User's Feedback
Answer / 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 |
Using input function
data jaganl.1;
input bp$;
a=input(bp);
cards;
100/90
120/89
112/87
;
run;
| Is This Answer Correct ? | 1 Yes | 9 No |
how to write code for left outer join in SAs using datastep?
Why do we use QUIT commmand for proc datasets and proc sql ???
Describe a time when you were really stuck on a problem and how you solved it?
how would you determine the number of missing or nonmissing values in computations? : Sas programming
What commands are used in the case of including or excluding any specific variables in the data set?
What statement do you code to write the record to the file?
Explain substr function?
What are the criticality that you have faced during your project in SAS?
How to do user inputs and command line arguments in SAS? D&B
what is OLAP?
how does sas know on which server the piece of code to be executed ? say if a proc olap code is written then how the sas application would detect on which server to execute.
what type of graphs we will create(for 2+years candidates)?