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 program data vector (pdv) and what are its functions?
how to perform paired t-test using Base/SAS & SAS/Stat?
How could you generate test data with no input data?
How to convert a given date value into SAS date
9 Answers CitiGroup, Quintiles,
how do i read multiple spaces in datasets? eg: vijaya raghava perumal.I tried with using & but it workss if its vijaya raghava but not for raghava perumal.how to do this?
how do you validate sas program?
what is program data vector? : Sas-administrator
how sas deals with business intelligence? : Sas-bi
what are scrubing procedures in SAS?
how can u join the two tables without using proc sql Joins and nested queries ?
I need to find the numeric field which contains blank in between..Ex:123 456...there is blank in between the 123 456..I need to know if there is any SAS function to find a field.. Please suggest...
What will calendar procedure do?