Date: Fri, 28 Mar 2003 22:35:08 -0500
Reply-To: SPSSX-L@LISTSERV.UGA.EDU
Sender: "SPSSX(r) Discussion" <SPSSX-L@LISTSERV.UGA.EDU>
From: Bob Walker <spss@surveys-forecasts.com>
Subject: Re: z-score to scale
In-Reply-To: <20030328202321.LQYH8731.lakemtao05.cox.net@smtp.central.cox.net>
Content-type: text/plain; charset=us-ascii
David,
If necessary, compute and save your z-scores using the DESCRIPTIVES
command. If you already have saved your variables as z-scores (e.g.,
ZVAR1 to ZVAR10) you can transform them to 0-100 using the CDF.NORMAL
cumulative distribution function (listed under the COMPUTE command --
the short form is CDFNORM), as follows:
GET FILE = "C:\Data.sav".
DESCRIPTIVES VARIABLES = VAR1 TO VAR10 /SAVE.
DO REPEAT K = ZVAR1 TO ZVAR10.
COMPUTE K = 100*CDFNORM(K).
END REPEAT.
SAVE OUTFILE = "C:\Data.sav".
Regards,
Bob Walker
Surveys & Forecasts, LLC
www.surveys-forecasts.com
-----Original Message-----
From: SPSSX(r) Discussion [mailto:SPSSX-L@LISTSERV.UGA.EDU] On Behalf Of
donovan2@COX.NET
Sent: Friday, March 28, 2003 3:23 PM
To: SPSSX-L@LISTSERV.UGA.EDU
Subject: z-score to scale
I have a z-score (ranges from -2.7 to +2.4) that I would like to
transform to a 0 to 100 point scale (same distribution, just different
metric). Any suggestions would be appreciated.
Thanks in advance.
David Wright
|