This file is indexed.

/usr/share/doc/pspp/pspp.html/LOGISTIC-REGRESSION.html is in pspp 0.8.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- This manual is for GNU PSPP version 0.8.4,
software for statistical analysis.

Copyright (C) 1997, 1998, 2004, 2005, 2009, 2012, 2013, 2014 Free Software Foundation, Inc.

Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled "GNU
Free Documentation License". -->
<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
<head>
<title>PSPP: LOGISTIC REGRESSION</title>

<meta name="description" content="PSPP: LOGISTIC REGRESSION">
<meta name="keywords" content="PSPP: LOGISTIC REGRESSION">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="Function-Index.html#Function-Index" rel="index" title="Function Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Statistics.html#Statistics" rel="up" title="Statistics">
<link href="MEANS.html#MEANS" rel="next" title="MEANS">
<link href="FACTOR.html#FACTOR" rel="prev" title="FACTOR">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.indentedblock {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
div.smalllisp {margin-left: 3.2em}
kbd {font-style:oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:nowrap}
span.nolinebreak {white-space:nowrap}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
-->
</style>


</head>

<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="LOGISTIC-REGRESSION"></a>
<div class="header">
<p>
Next: <a href="MEANS.html#MEANS" accesskey="n" rel="next">MEANS</a>, Previous: <a href="FACTOR.html#FACTOR" accesskey="p" rel="prev">FACTOR</a>, Up: <a href="Statistics.html#Statistics" accesskey="u" rel="up">Statistics</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Function-Index.html#Function-Index" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<a name="LOGISTIC-REGRESSION-1"></a>
<h3 class="section">15.7 LOGISTIC REGRESSION</h3>

<a name="index-LOGISTIC-REGRESSION"></a>
<a name="index-logistic-regression"></a>
<a name="index-bivariate-logistic-regression"></a>

<div class="display">
<pre class="display">LOGISTIC REGRESSION [VARIABLES =] <var>dependent_var</var> WITH <var>predictors</var>

     [/CATEGORICAL = <var>categorical_predictors</var>]

     [{/NOCONST | /ORIGIN | /NOORIGIN }]

     [/PRINT = [SUMMARY] [DEFAULT] [CI(<var>confidence</var>)] [ALL]]

     [/CRITERIA = [BCON(<var>min_delta</var>)] [ITERATE(<var>max_interations</var>)]
                  [LCON(<var>min_likelihood_delta</var>)] [EPS(<var>min_epsilon</var>)]
                  [CUT(<var>cut_point</var>)]]

     [/MISSING = {INCLUDE|EXCLUDE}]
</pre></div>

<p>Bivariate Logistic Regression is used when you want to explain a dichotomous dependent
variable in terms of one or more predictor variables.
</p>
<p>The minimum command is
</p><div class="example">
<pre class="example">LOGISTIC REGRESSION <var>y</var> WITH <var>x1</var> <var>x2</var> &hellip; <var>xn</var>.
</pre></div>
<p>Here, <var>y</var> is the dependent variable, which must be dichotomous and <var>x1</var> &hellip; <var>xn</var>
are the predictor variables whose coefficients the procedure estimates.
</p>
<p>By default, a constant term is included in the model.
Hence, the full model is
<em>{\bf y} 
= b_0 + b_1 {\bf x_1} 
+ b_2 {\bf x_2} 
+ \dots
+ b_n {\bf x_n}
</em>
</p>
<p>Predictor variables which are categorical in nature should be listed on the <code>/CATEGORICAL</code> subcommand.
Simple variables as well as interactions between variables may be listed here.
</p>
<p>If you want a model without the constant term <em>b_0</em>, use the keyword <code>/ORIGIN</code>.
<code>/NOCONST</code> is a synonym for <code>/ORIGIN</code>.
</p>
<p>An iterative Newton-Raphson procedure is used to fit the model.
The <code>/CRITERIA</code> subcommand is used to specify the stopping criteria of the procedure,
and other parameters.
The value of <var>cut_point</var> is used in the classification table.  It is the 
threshold above which predicted values are considered to be 1.  Values
of <var>cut_point</var> must lie in the range [0,1].
During iterations, if any one of the stopping criteria are satisfied, the procedure is
considered complete.
The stopping criteria are:
</p><ul>
<li> The number of iterations exceeds <var>max_iterations</var>.  
      The default value of <var>max_iterations</var> is 20.
</li><li> The change in the all coefficient estimates are less than <var>min_delta</var>.
The default value of <var>min_delta</var> is 0.001.
</li><li> The magnitude of change in the likelihood estimate is less than <var>min_likelihood_delta</var>.
The default value of <var>min_delta</var> is zero.
This means that this criterion is disabled.
</li><li> The differential of the estimated probability for all cases is less than <var>min_epsilon</var>.
In other words, the probabilities are close to zero or one.
The default value of <var>min_epsilon</var> is 0.00000001.
</li></ul>


<p>The <code>PRINT</code> subcommand controls the display of optional statistics.
Currently there is one such option, <code>CI</code>, which indicates that the 
confidence interval of the odds ratio should be displayed as well as its value.
<code>CI</code> should be followed by an integer in parentheses, to indicate the
confidence level of the desired confidence interval.
</p>
<p>The <code>MISSING</code> subcommand determines the handling of missing
variables.  
If <code>INCLUDE</code> is set, then user-missing values are included in the
calculations, but system-missing values are not.
If <code>EXCLUDE</code> is set, which is the default, user-missing
values are excluded as well as system-missing values. 
This is the default.
</p>
<hr>
<div class="header">
<p>
Next: <a href="MEANS.html#MEANS" accesskey="n" rel="next">MEANS</a>, Previous: <a href="FACTOR.html#FACTOR" accesskey="p" rel="prev">FACTOR</a>, Up: <a href="Statistics.html#Statistics" accesskey="u" rel="up">Statistics</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Function-Index.html#Function-Index" title="Index" rel="index">Index</a>]</p>
</div>



</body>
</html>