Skip to content

Commit

Permalink
[ENH] GaussianRegressor using statsmodels GLM with gaussian link (#…
Browse files Browse the repository at this point in the history
…222)

#### Reference Issues/PRs

Implements a GLM model for the gaussian link in #7 

#### What does this implement/fix? Explain your changes.

The Gaussian Regressor is a direct interface to the statsmodels package's
GLM model
  • Loading branch information
julian-fong authored Mar 31, 2024
1 parent 8bcdd8c commit 91ca77a
Show file tree
Hide file tree
Showing 3 changed files with 402 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/source/api_reference/regression.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ Linear regression

ARDRegression
BayesianRidge
GLMRegressor

Gaussian process and kernel regression
--------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions skpro/regression/linear/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
"""Linear regression models."""
# copyright: skpro developers, BSD-3-Clause License (see LICENSE file)

from skpro.regression.linear._glm import GLMRegressor
from skpro.regression.linear._sklearn import ARDRegression, BayesianRidge

__all__ = [
"ARDRegression",
"BayesianRidge",
"GLMRegressor",
]
Loading

0 comments on commit 91ca77a

Please sign in to comment.