BBPT Example

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Xxxxxxx Xxxx

Ms. Wise

Algebra

XXX xx 2011

Linear Function Analysis: School Funding

Figure 1: Variables

Variable Name Label General Specific Type Measurement


Type Units
Funding 2008 How much federal funding Quantitative Interval/Ratio Dollars
was allocated to the (Millions)
education investment?
FY 2008

Funding 2010 How much federal funding Quantitative Interval/Ratio Dollars


was allocated to the (Millions)
education investment?
FY 2010

Figure 2: Scatterplot
SAS code:
PROC SGPLOT data=s1;
reg y=C1__Funding_FY2008 x=C3__Funding_FY2010;
title 'Scatterplot of 2008 Funding by 2010 Funding';
yaxis label = "Funding 2008";
xaxis label = "Funding 2010";
run;

You might also like