How would you generate 1000 observations from a normal
distribution with a mean of 50 and standard deviation of
20. How would you use PROC CHART to look at the
distribution? Describe the shape of the distribution.
Answer / yuyin
data temp(keep=x);
retain mu 50 std 20 seed 0;
do i=1 to 1000;
x=mu+std*rannor(seed);
output;
end;
run;
proc chart data=temp;
vbar x;
run;
normal distribution with mean =50 and std=20
| Is This Answer Correct ? | 22 Yes | 2 No |
Describe the ways in which you can create macro variables? : sas-macro
In the flow of DATA step processing, what is the first action in a typical DATA Step?
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
How would you include common or reuse code to be processed along with your statements?
what is the main difference between rename and label? (don't say that they both perform the same function).
Describe a time when you were really stuck on a problem and how you solved it?
data jagan1.s; input bp$; cards; 100/90 120/89 112/87 run; in the above code how to convert character data values to numeric data values?
What are TEAEs
2 Answers Accenture, Quintiles,
define table lookup and how may ways it can be done...explian
How do i read multiple spaces in datasets?
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
What do the SAS log messages "numeric values have been converted to character" mean?