Click or drag to resize

LogisticRegressionAuxiliaryStatsParameterCalcOddsRatios Property

Gets the odds ratio values for the computed coefficients. The odds ratio for the intercept parameter, if there is one, is not computed.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleVector OddsRatios { get; }

Property Value

DoubleVector
Remarks
The ordering of the odds ratios in the returned vector corresponds to the ordering of the columns of the logistic regressions regression matrix.
C#
                    | lr.RegressionMatrx.Col(i+1), if model has intercept
OddsRatios[i]  -->  |
                    | lr.RegressionMatrix.Col(i), if model does not have intercept
See Also