Getting Started Example for PROC TSCSREG
/*--------------------------------------------------------------
SAS Sample Library
Name: tscgs.sas
Description: Example program from SAS/ETS User's Guide,
The TSCSREG Procedure
Title: Getting Started Example for PROC TSCSREG
Product: SAS/ETS Software
Keys:
PROC: TSCSREG
Notes:
--------------------------------------------------------------*/
/* Examples from the Getting Started Section of the TSCSREG
procedure */
title1;
data greene;
input firm year output cost @@;
df1 = firm = 1;
df2 = firm = 2;
df3 = firm = 3;
df4 = firm = 4;
df5 = firm = 5;
d60 = year = 1960;
d65 = year = 1965;
d70 = year = 1970;
datalines;
1 1955 5.36598 1.14867 1 1960 6.03787 1.45185
1 1965 6.37673 1.52257 1 1970 6.93245 1.76627
2 1955 6.54535 1.35041 2 1960 6.69827 1.71109
2 1965 7.40245 2.09519 2 1970 7.82644 2.39480
3 1955 8.07153 2.94628 3 1960 8.47679 3.25967
3 1965 8.66923 3.47952 3 1970 9.13508 3.71795
4 1955 8.64259 3.56187 4 1960 8.93748 3.93400
4 1965 9.23073 4.11161 4 1970 9.52530 4.35523
5 1955 8.69951 3.50116 5 1960 9.01457 3.68998
5 1965 9.04594 3.76410 5 1970 9.21074 4.05573
6 1955 9.37552 4.29114 6 1960 9.65188 4.59356
6 1965 10.21163 4.93361 6 1970 10.34039 5.25520
;
proc sort data=greene;
by firm year;
run;
proc tscsreg data=greene;
model cost = output / rantwo;
id firm year;
run;