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 |
how to read character value without using substr function in sas ?
how do the in= variables improve the capability of a merge? : Sas programming
i have a macro variable var1,var2. i want titles for the each macro variable separately? how it is possible?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
Difference between sum function and using “+” operator?
What is the difference between using drop = data set option in data statement and set statement?
What is the pound sign used for the DATA _NULL_?
Can Some one Explain How the Datasets from SAS can be loaded in to the MVS OS?
Explain the difference between nodup and nodupkey options?
what is the difference between compiler and interpreter? give any one example (software product) that act as a interpreter?
36 Answers Accenture, College School Exams Tests, CTS, IBM, IHRD, Infosys, Sylhet Engineering College, TCS, Wipro,
Have you been involved in editing the data or writing data queries?
1 Answers BioServe, Oracle, Sasken,
data task; input id date date9. visit; cards; 101 01jan2015 1 101 02jan2015 2 101 06jan2015 3 102 04jan2015 1 102 07jan2015 2 102 12jan2015 3 103 06jan2015 1 103 13jan2015 2 ; run; write a program to find out missing dates between visits by each subject.