MultinomialRegression Constructor
|
Initializes Multinomial regression.
Namespace:
FinMath.LeastSquares
Assembly:
FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax public MultinomialRegression(
Matrix regressors,
Matrix regressands
)
Parameters
- regressors
- Type: FinMath.LinearAlgebraMatrix
Regressors is an N-by-P design matrix with N observations on P predictor variables. - regressands
- Type: FinMath.LinearAlgebraMatrix
Regressands is an N-by-K matrix, where Regressands(i,j) is the number of outcomes of the multinomial category j for the predictor combinations given by Regressors.Rows(i)
See Also