Click or drag to resize

LogisticRegressionParameterParameterCalc Class

Class LogisticRegressionParameter tests statistical hypotheses about estimated parameters in linear regressions computed by class LogisticRegression.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreLogisticRegressionParameterParameterCalc

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[SerializableAttribute]
public class LogisticRegressionParameter<ParameterCalc> : ICloneable
where ParameterCalc : new(), ILogisticRegressionCalc

Type Parameters

ParameterCalc

[Missing <typeparam name="ParameterCalc"/> documentation for "T:CenterSpace.NMath.Core.LogisticRegressionParameter`1"]

The LogisticRegressionParameterParameterCalc type exposes the following members.

Constructors
 NameDescription
Protected methodLogisticRegressionParameterParameterCalc Used by Clone method.
Public methodLogisticRegressionParameterParameterCalc(LogisticRegressionParameterCalc, Int32) Construct a LogisticRegressionParameter instance for the parameter at the given index in the given LogisticRegression.
Top
Properties
 NameDescription
Public propertyParameterIndex Gets the index of this parameter in the linear regresssion.
Public propertyStandardError Gets the standard error of this parameter.
Public propertyValue Gets the value of this parameter.
Public propertyWaldChiSqStatisticPValue Gets the p-value for a t-test with the null hypothesis that this parameter is equal to the given test value versus the alternative hypothesis that it is not.
Public propertyWaldChiSquareStatistic Gets the Wald chi square statistic. This is defined as the parameter value squared divided by the parameter variance.
Top
Methods
 NameDescription
Public methodClone Creates a deep copy of this LogisticRegressionParameter.
Public methodConfidenceInterval Returns the 1 - alpha confidence interval for this parameter.
Public methodToString Returns a formatted string representation of this parameter.
(Overrides ObjectToString)
Top
Fields
 NameDescription
Protected fieldparameterValue_ Parameter value field.
Protected fieldparameterVariance_ Parameter variance field.
Protected fieldparamIndex_ Parameter index field.
Top
See Also