Diff for "FAQ/regline" - CBU statistics Wiki
location: Diff for "FAQ/regline"
Differences between revisions 1 and 11 (spanning 10 versions)
Revision 1 as of 2006-07-27 12:31:42
Size: 297
Editor: pc0082
Comment:
Revision 11 as of 2009-07-10 10:38:54
Size: 936
Editor: PeterWatson
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Putting a regression line on a scatterplot in SPSS needs to be done slightly differently using version 12.0 and above. A step by step guide to doing this may be found by choosing 'Chart Editing' and going to page 14 of the pdf document found at http://www.calstatela.edu/its/docs/pdf/lspss12.pdf == Putting a regression line on a scatterplot ==

Putting a regression line on a scatterplot in SPSS can be done using the interactive graph in SPSS. The syntax below draws a regression line using reading score to predict writing score. Fuller details are given [http://www.ats.ucla.edu/stat/spss/faq/scatter.htm here.]

{{{
IGRAPH
 /X1 = VAR(READ)
 /Y = VAR(WRITE)
 /FITLINE METHOD = REGRESSION LINEAR LINE = TOTAL
 /SCATTER.
}}}

Alternatively you can run the following syntax which produces a scatterplot:

{{{
GRAPH
  /SCATTERPLOT(BIVAR)=READ WITH WRITE
  /MISSING=LISTWISE .
}}}

To add the fit line, you need to open the graph editor (by double-clicking on the graph), and then select the Elements pull-down menu at the top, and then select Fit Line at Total.

You just need to change the variable names in the above syntax examples substituting the variable names in your SPSS data for 'read' and 'write'.

Putting a regression line on a scatterplot

Putting a regression line on a scatterplot in SPSS can be done using the interactive graph in SPSS. The syntax below draws a regression line using reading score to predict writing score. Fuller details are given [http://www.ats.ucla.edu/stat/spss/faq/scatter.htm here.]

IGRAPH
 /X1 = VAR(READ)
 /Y = VAR(WRITE)
 /FITLINE METHOD = REGRESSION LINEAR LINE = TOTAL
 /SCATTER.

Alternatively you can run the following syntax which produces a scatterplot:

GRAPH
  /SCATTERPLOT(BIVAR)=READ WITH WRITE
  /MISSING=LISTWISE .

To add the fit line, you need to open the graph editor (by double-clicking on the graph), and then select the Elements pull-down menu at the top, and then select Fit Line at Total.

You just need to change the variable names in the above syntax examples substituting the variable names in your SPSS data for 'read' and 'write'.

None: FAQ/regline (last edited 2013-03-08 10:17:36 by localhost)