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 |
Can Some one Explain How the Datasets from SAS can be loaded in to the MVS OS?
Give an example where SAS fails to convert character value to numeric value automatically?
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
how do you pull data from equifax?tell me the process?
0 Answers Synchrony Financial,
Differentiate between sas functions and sas procedures.
Which are the statements whose placement in the data step is critical?
why is the use of Retrive statement and give me with example?
How to convert a given date value into SAS date
9 Answers CitiGroup, Quintiles,
what is Business Intelligence?
Write a SAS macro to calculate number of numbers in an email address
How do you specify the number of iterations and specific condition within a single do loop?
What are the statements in proc sql?