how to perform paired t-test using Base/SAS & SAS/Stat?
Answers were Sorted based on User's Feedback
Answer / shwetha
I tried the above code.But it worked after I gave * or :
between var1 and var2.
proc ttest data=a;
paired var1:var2;
run;
| Is This Answer Correct ? | 5 Yes | 2 No |
What are the differences between proc means and proc summary?
What statement do you code to tell SAS that it is to write to an external file?
What is the significance of the ‘OF’ in X=SUM (OF a1-a4, a6, a9);?
How to convert .xls file into CSV format?
What is proc sort?
What r all the reporting procedures...?
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
How to create a permanent sas data set?
Give some ways by which you can define the variables to produce the summary report (using proc report)?
What is the difference between SAS functions and procedures?
Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables?
What is the difference between Regression and Logistic Regression? Can u explain the Assumptions/Conditions?