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 Posted / 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 |
Post New Answer View All Answers
what is the purpose of _error_? : Sas programming
Intern stastical programmer written test
Explain by-group processing?
What is the length assigned to the target variable by the scan function?
What is the SAS data set?
how would you determine the number of missing or nonmissing values in computations? : Sas programming
What are the default statistics that proc means produce?
How would you define the end of a macro? : sas-macro
what is enterprise guide? What is the use of it? : Sas programming
What is the maximum and minimum length of macro variable
name the scheduler for scheduling job and explain the scheduler? : Sas-di
What is the basic syntax style in SAS?
what is the difference between nodup and nodupkey options? : Sas programming
What are the data types in sas?
What is the difference between proportion and average?