Regression Analysis in C#

Simple Regression

Illustrates how to perform a simple linear regression using the SimpleRegressionModel class.

Show code.

Multiple Linear Regression

Illustrates how to use the LinearRegressionModel class to perform a multiple linear regression.

Show code.

Polynomial Regression

Illustrates how to fit data to polynomials using the PolynomialRegressionModel class.

Show code.

Logistic Regression

Illustrates how to use the LogisticRegressionModel class to create logistic regression models.

Show code.

Generalized Linear Models

Illustrates how to use the GeneralizedLinearModel class to compute probit, Poisson and similar regression models.

Show code.