Date: Sat, 14 Dec 1996 01:14:33 GMT
Reply-To: AA <hope41@PROAXIS.COM>
Sender: "SPSSX(r) Discussion" <SPSSX-L@UGA.CC.UGA.EDU>
From: AA <hope41@PROAXIS.COM>
Organization: HDFS/OSU
Subject: Is 7.5 out????
This mentions 7.5. Is this released yet?
Alan Acock
hope41@proaxis.com
David Marso <marso@spss.com> wrote in article <32B1B29F.72FD@spss.com>...
> A slight ammendment. I stated that NLR is in Advanced Statistics.
> Actually prior to version 7.5 this is true. NLR and CNLR are now
> part of Professional Statistics. Also, new to version 7.5 (Brought
> to you by popular demand and encouragement from David Nichols, myself
> and many others in recent months/years (pick your reference). THERE
> IS NOW AN OUTFILE SUBCOMMAND IN REGRESSION (still part of the base.).
> Something nice is that it sames the covariance matrix of the parameter
> estimates (so these coefficients can actually be used for doing
> something
> creative).
> David Marso
>
> DATA LIST FREE/ ID X Y .
> BEGIN DATA
> 1 2 3 1 4 5 1 3 4 1 3 4 1 7 8
> 2 3 4 2 5 6 2 8 7 2 3 4 2 9 8
> END DATA .
> * EXAMPLE OF REGRESSION /OUTFILE SUBCOMMAND in version 7.5 *.
> SPLIT FILE BY ID.
> REGRESSION
> VARIABLES X Y / DEP Y
> / METHOD ENTER X
> / OUTFILE COVB ('PARAMS.SAV').
> GET FILE 'PARAMS.SAV'.
> LIST.
> * The OUTFILE *.
> ID DEPVAR_ ROWTYPE_ VARNAME_ CONST_ X
>
> 1 Y COV CONST_ .00 .00
> 1 Y COV X .00 .00
> 1 Y EST 1.00 1.00
> 1 Y SE .00 .00
> 1 Y SIG . .
> 1 Y DFE 3.00 3.00
> 2 Y COV CONST_ .20 -.03
> 2 Y COV X -.03 .01
> 2 Y EST 2.28 .63
> 2 Y SE .44 .07
> 2 Y SIG .01 .00
> 2 Y DFE 3.00 3.00
>
>
> Number of cases read: 12 Number of cases listed: 12
>
|