Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Title "Regression model programming";

data panicle;
input y Tempmax Tempmin RHmax Rf Y ;
datalines;
32.00 24.80 87.60 0.00 0.00
32.20 23.80 88.10 0.00 0.00
32.00 23.00 87.60 0.00 0.00
32.20 24.00 88.10 0.00 0.00
32.40 23.00 87.60 0.00 0.00
33.20 22.80 88.50 0.00 0.00
32.40 23.20 88.60 0.00 0.00
33.40 23.00 86.50 0.00 0.00
33.20 23.80 88.10 0.00 0.00
34.00 23.10 87.50 0.00 0.00
33.00 22.80 87.00 0.00 70.00
34.20 23.00 88.00 0.00 70.00
34.00 22.30 89.00 0.00 77.70
33.40 24.80 87.60 0.00 77.70
31.30 24.50 88.40 9.00 77.70
32.20 24.20 87.60 0.00 77.70
32.30 23.20 88.60 0.00 77.70
33.00 24.00 87.60 0.00 77.70
33.20 23.50 86.20 0.00 77.70
34.00 22.50 87.50 0.00 77.70
35.00 22.00 88.60 0.00 80.80
34.30 23.30 92.50 36.50 80.80
34.30 23.20 86.30 0.00 80.80
34.30 23.20 85.20 0.00 80.80
34.20 22.80 89.70 0.00 80.80
32.30 22.50 89.80 11.60 80.80
33.20 22.00 88.50 0.00 80.80
34.20 23.80 84.60 0.00 92.30
34.00 24.10 93.80 34.00 92.30
33.30 24.00 88.90 0.00 92.30
32.40 23.80 88.50 0.00 92.30
32.40 24.10 86.90 0.00 92.30
35.00 22.00 88.70 0.00 92.30
34.00 22.30 89.70 0.00 100.00
34.20 23.10 90.80 0.00 100.00
33.30 22.80 93.80 10.80 100.00
32.30 24.20 93.40 39.60 100.00
34.00 23.20 90.80 0.00 100.00
33.20 22.80 94.90 34.70 100.00
32.30 24.00 93.80 9.00 100.00
33.00 22.20 93.90 35.50 100.00
;
run;

ods rtf file="rodunc0.rtf" style=journal;


ods html;
ods graphics on;
proc corr data=panicle sscp cov plots;
var Y Tempmax Tempmin RHmax Rf;
proc reg data=panicle;
model Y = Tempmax Tempmin RHmax Rf;
run;
ods rtf close;

You might also like