What procedure you used to calculate p-value?
Answers were Sorted based on User's Feedback
Answer / thirupathi
Proc ttest is correct choice, when the data is continuous
and testing for two treatment groups only.
Proc freq is used if the data is categorical.
Proc anova and glm are used when there are more than two
groups and continuous data.
| Is This Answer Correct ? | 11 Yes | 0 No |
What SAS statements would you code to read an external raw data file to a DATA step?
The Lion King is hosting an animal conference. All the animals in the world attend except one. Which animal does not attend?
How do you read in the variables that you need?
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
how can you sort the dataset having millions of OBS(instead of sort procedure?
How do you debug macros?
what is the primary variable in your study?
How will you use the WHO Drug Dictionary for Reporting Clinical Trials?
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
code the tables statement for a single level frequency?
I have a dataset with variables empid and doj how to calculate retirement age?
you have a data set like this. data qqq; input name $ total; cards; qq 22 ww 33 qq 22 ee 44 rr 33 ww 44 ; run; and you want output like this......... name total qq 22 ww 44 Do it by data set step.