|  | 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.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleVector OddsRatios { get; }Public ReadOnly Property OddsRatios As DoubleVector
	Get
public:
property DoubleVector^ OddsRatios {
	DoubleVector^ get ();
}member OddsRatios : DoubleVector with get
Property Value
DoubleVector Remarks
Remarks
            The ordering of the odds ratios in the returned
            vector corresponds to the ordering of the columns of the 
            logistic regressions regression matrix.
            
                    | lr.RegressionMatrx.Col(i+1), if model has intercept
OddsRatios[i]  -->  |
                    | lr.RegressionMatrix.Col(i), if model does not have intercept See Also
See Also