why is a stop statement needed for the point=option on a set statement? : Sas programming
No Answer is Posted For this Question
Be the First to Post Answer
In which format does Date stores in sas..? What is the use of DATE in SAS.?
who is the best SAS clinical Trainer in Hyderabad?
What is the use of %include statement?
Why is a STOP statement needed for the point=option on a SET statement?
If you have a data set that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variable?
if x=round(26.3,10)-1 then x= how much and how explain?
how does sas handle missing values in formats? : Sas programming
what are the differences between proc report and proc tabulate?
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
Name and describe three SAS functions that you have used, if any?
Explain the difference between informat and format with an example.
how we can call macros with in data step?