X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=doc%2Fstatistics.texi;h=9f1923b8e82ddad89e8a4c9183cf9bff3c345e5a;hb=1255b66223eac8ff1b0abf138ead22fd801c6633;hp=2cb79d23e49d7e7d81585cdabb2df944e0284d7e;hpb=04fb909bd65eee66428d131ff34a6e1fde42e243;p=pspp-builds.git diff --git a/doc/statistics.texi b/doc/statistics.texi index 2cb79d23..9f1923b8 100644 --- a/doc/statistics.texi +++ b/doc/statistics.texi @@ -14,6 +14,7 @@ far. * CROSSTABS:: Crosstabulation tables. * T-TEST:: Test hypotheses about means. * ONEWAY:: One way analysis of variance. +* RANK:: Compute rank scores. * REGRESSION:: Linear regression. @end menu @@ -600,7 +601,7 @@ of variable preceding @code{WITH} against variable following @code{WITH} are generated. -@node ONEWAY, REGRESSION, T-TEST, Statistics +@node ONEWAY, RANK, T-TEST, Statistics @comment node-name, next, previous, up @section ONEWAY @@ -650,4 +651,68 @@ The @code{CONTRASTS} subcommand may be given up to 10 times in order to specify different contrast tests. @setfilename ignored +@node RANK, REGRESSION, ONEWAY, Statistics +@comment node-name, next, previous, up +@section RANK + +@vindex RANK +@cindex RANK + +@display +RANK + [VARIABLES=] var_list [@{A,D@}] [BY var_list] + /TIES=@{MEAN,LOW,HIGH,CONDENSE@} + /FRACTION=@{BLOM,TUKEY,VW,RANKIT@} + /PRINT[=@{YES,NO@} + /MISSING=@{EXCLUDE,INCLUDE@} + + /RANK [INTO var_list] + /NTILES(k) [INTO var_list] + /NORMAL [INTO var_list] + /PERCENT [INTO var_list] + /RFRACTION [INTO var_list] + /PROPORTION [INTO var_list] + /N [INTO var_list] + /SAVAGE [INTO var_list] +@end display + +The @cmd{RANK} command ranks variables and stores the results into new +variables. + +The VARIABLES subcommand, which is mandatory, specifies one or +more variables whose values are to be ranked. +After each variable, @samp{A} or @samp{D} may appear, indicating that +the variable is to be ranked in ascending or descending order. +Ascending is the default. +If a BY keyword appears, it should be followed by a list of variables +which are to serve as group variables. +In this case, the cases are gathered into groups, and ranks calculated +for each group. + +The TIES subcommand specifies how tied values are to be treated. The +default is to take the mean value of all the tied cases. + +The FRACTION subcommand specifies how proportional ranks are to be +calculated. This only has any effect if NORMAL or PROPORTIONAL rank +functions are requested. + +The PRINT subcommand may be used to specify that a summary of the rank +variables created should appear in the output. + +The function subcommands are RANK, NTILES, NORMAL, PERCENT, RFRACTION, +PROPORTION and SAVAGE. Any number of function subcommands may appear. +If none are given, then the default is RANK. +The NTILES subcommand must take an integer specifying the number of +partitions into which values should be ranked. +Each subcommand may be followed by the INTO keyword and a list of +variables which are the variables to be created and receive the rank +scores. There may be as many variables specified as there are +variables named on the VARIABLES subcommand. If fewer are specified, +then the variable names are automatically created. + +The MISSING subcommand determines how user missing values are to be +treated. A setting of EXCLUDE means that variables whose values are +user-missing are to be excluded from the rank scores. A setting of +INCLUDE means they are to be included. The default is EXCLUDE. + @include regression.texi