How do you generate random samples?
Answers were Sorted based on User's Feedback
Answer / sandhya
PROC SURVEYSELECT gives you the resulting sample dataset
from the population dataset. It is much more sofisticated.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / chandu
sekhar and vinodh plz u people explain this briefly plz....
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / bhimu
ranuni()- Function will generate uniform random numbers
between 0 and 1
Ranuni(123) - here 123 is called seed.
Like that you can use Binomial and Poisson distributions.
You can also go for the procedure
PROC SURVEYSELECT
Is This Answer Correct ? | 1 Yes | 1 No |
What is the difference between INPUT and INFILE ?
how to extract data from SAP servers? Is like oracle servers or any other methods to extract please reply me.
what can you learn from the sas log when debugging? : Sas programming
why a stop statement is needed for the point= option on a set statement?
Which are SAS Windows Clients & SAS Java Clients
How does the internal authentication work in sas? : sas-grid-administration
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
what other sas products have you used and consider yourself proficient in using? : Sas programming
Have you used macros? For what purpose you have used? : sas-macro
what are sas/access and sas/connect? : Sas programming
calculate the sum of value using only DATA STEP. data count_; input year name $ value; cards; 2006 xxx 10 2007 yyy 12 2006 xxx 20 2008 yyy 15 2007 xxx 15 ; out put should be like this year name T_value ----------------------- 2006 xxx 30 2007 xxx 15 2007 yyy 12 2008 xxx 15
What does proc print, and proc contents are used for?