

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Assignment; Class: Longitudinal Data Analysis; Subject: Biostatistics; University: University of Illinois - Chicago; Term: Fall 2008;
Typology: Assignments
1 / 2
This page cannot be seen from the preview
Don't miss anything!


Biostatistics 537: Longitudinal Data Analysis - Fall 2008 Problem Set 1 - Due: September 11, 2008
There are two data sets for this problem set: vt.dat and box.dat. Both of these can be downloaded at the class website http://www.uic.edu/classes/bstt/bstt513/ (towards the bottom of the page).
/* input the data in multivariate format */ DATA MultData; infile in1; INPUT subject 2. (trial1 trial2 trial3) (4.) ; ltrial1 = log(trial1); ltrial2 = log(trial2); ltrial3 = log(trial3);
PROC MEANS; RUN;
/* set up the data in univariate format */ DATA UNIDATA; SET MultData; ARRAY T(3) ltrial1-ltrial3; DO TRIAL = 1 TO 3; logEMG = t(TRIAL); OUTPUT; END; DROP ltrial1-ltrial3; RUN;
PROC MEANS; RUN: