How could you generate test data with no input data?
Answers were Sorted based on User's Feedback
Answer / bitla
using random functions like RANUNI() RANBIN() etc
with DO loops
ex:
data one;
do i=1 to 1000;
x=ranuni(32223);
end;
run;
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / k ramesh
data testdata_anlyse;
do i=1 to 100;
x=rannor(i);
output;
end;
run;
| Is This Answer Correct ? | 3 Yes | 1 No |
How would you identify a macro variable?
Is it possible to do sorting tranformation in charecter variable??if can tell me one eg..
How many data types are there in SAS?
You have a data set of 100 observations,how can you restrict the output so that the output has only data from row no. 10 to row no. 20
What is the use of %include statement?
Have you ever linked SAS code, If so, describe the link and any required statements used to either process the code or the step itself?
how can get the first and last observations in a dataset using Proc SQl?
What are types of transport files?
2 Answers PRA Health Sciences, Quintiles,
I have 3 years of work experience at a startup and recently got certified in Data Science with SAS. I need to know how to get into the analytics industry
If reading a variable length file with fixed input, how would you prevent SAS from reading the next record if the last variable didn’t have a value?
what is picture format? give any one example?
Do you think professionally?