I'll be away from Feb 22-Mar 6. Mr. L. Ho will be filling in for me for lectures on Feb 26 and Feb 28. The TA will be in for Mar 4 and 6. Midterm is on March 4.
http://www.bios.unc.edu/~truong/b663/b663.html
Office hours: Tuesday, Thursday 1400-1450, MC3105A.
Datasets
[from "Introduction to Regression Modeling" by Abraham and Ledolter (2006)]
ASCII datasets
ASCII tabbed Datasets
Excel Datasets
JMP Datasets
SAS Datasets
SPSS Datasets
Instructions for importing SAS (xpt) datasets:
Unpack SAS.ZIP and follow the steps below to see the content of DATA.XPT, say.
Step 1: Double click DATA.XPT (to invoke SAS)
Step 2: In SAS EDITOR WINDOW, enter the following statements:
Title 'Example on importing SAS datasets XPT';
proc contents data=work.DATA; run;
proc print data=work.DATA; run;
Step 3: Submit the job.
Instructions for importing ASCII datasets:
Copy the content to SAS EDITOR WINDOW and load the data in using CARDS statement.
Alternatively, you can use the INFILE statement to read the file into SAS. Keep in mind
that these are tab-delimited files, so the INFILE statement looks like this:
infile "DATA.dat" dlm='09'x dsd missover;
Also, make sure to remove the line containing the variable names from the file.