Appendix G. SAS Code for Exercises in Chapter 23

libname examp 'c:\bookfiles\examples\sas'; options nodate nonumber ls=85 ps=55; *======================================================* | STATISTICAL ANALYSES for Response Variable = "score"| | (continuous numeric response variable) | *=======================================================* ; /* ANALYSIS #1: Two-Sample t-Test */ proc ttest data = examp.trial; class trt; var score; title 'ANALYSIS #1: Two-Sample t-Test'; run; /* ANALYSIS #2: Wilcoxon Rank-Sum Test */ proc npar1way wilcoxon data = examp.trial; class trt; var score; title 'ANALYSIS #2: Wilcoxon Rank-Sum Test'; run; /* ANALYSIS #3: One-Way ANOVA */ proc glm data = examp.trial; class trt; model score = trt; means trt; title 'ANALYSIS ...

Get Common Statistical Methods for Clinical Research with SAS Examples, Third Edition, 3rd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.