In the following DATA step, what is needed for ‘fraction’ to
print to the log? data _null_; x=1/3; if x=.3333 then put
‘fraction’; run;
Answer / henry
data precise;
x=1/3;
if round(x,0.0001)=.3333 then put 'fraction';
else put 'not fraction';
run;
| Is This Answer Correct ? | 3 Yes | 0 No |
What is the maximum length of the macro variable?
How did you use the round function?give an example(don't say it will round to the nearest intger) eg1:round(84.55,.1) =84.6 eg2:round(92.64,.1)=92.6,How it is happening like this tell me the logic,that is how the round function works when we have deimal values?
Hi, I have one dataset like id date ex: id date 1 13 1 13Oct2011 2 14 2 14Oct2011 3 15 3 15Oct2011 --->this is the current date here i want date format like 13Oct2011,14Oct2011 how we can modify the numeric to date format plz answer.
how are numeric and character missing values represented internally? : Sas programming
What is the role of sas grid administrator? : sas-grid-administration
Which is the Best SAS training Institute in Delhi NCR for SAS certification preparation
how does sas handle missing values in assignment statements? : Sas programming
What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?
how does sas handle missing values in procs? : Sas programming
what is the basic structure sas administrator? : Sas-administrator
i have a dataset with var1,var2,var3; i want to upload the titles for the variables . How can we?
What is a post baseline?