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 |
In which format does Date stores in sas..? What is the use of DATE in SAS.?
How to Rename Library?
What is run-group processing?
What are the ways to do a “table lookup” in sas?
I Here clinical SAS training by Ramesh Azmeera is good. Is it confirm ?
1 new york 7,262,700 2 los angeles 3,259,340 3 philadelphia 1,642,900 how to read the above data using input statement consider the above data is in txt format externally u have to use infile and input statement.
Have you been involved in editing the data or writing data queries?
1 Answers BioServe, Oracle, Sasken,
how will you location sas platform applications available from web browser? : Sas-bi
If money were no object, what would you like to do?
what is Difference between PROC SQL JOINS and MERGE?
how does sas handle missing values in functions? : Sas programming
i am importing large data from oracle to work library. in log there is a error message worklibrary space is not enough. then how to import the data safely to sas environment.