Skip to content
Snippets Groups Projects
Commit 7f4bb308 authored by Alexandre Gramfort's avatar Alexandre Gramfort
Browse files

revert commit linreg -> glm

(GLM works for models where the predicted value is a linear funcition of the data such as least squares, lasso or logistic regression)

git-svn-id: https://scikit-learn.svn.sourceforge.net/svnroot/scikit-learn/trunk@537 22fbfee3-77ab-4535-9bad-27d1bd3bc7d8
parent 35e12c23
No related branches found
No related tags found
No related merge requests found
Showing
with 3 additions and 3 deletions
......@@ -16,10 +16,10 @@ Parameter W is estimated by least squares.
Linear regression is done via instances of :class:`LinearRegression`.
.. autoclass:: scikits.learn.linreg.LinearRegression
.. autoclass:: scikits.learn.glm.LinearRegression
:members:
>>> from scikits.learn import linreg
>>> from scikits.learn import glm
>>>
>>> clf = Linre
......
......@@ -12,7 +12,7 @@ from itertools import cycle
import numpy as np
import pylab as pl
from scikits.learn.linreg.cd import Lasso, ElasticNet, lasso_path, \
from scikits.learn.glm.cd import Lasso, ElasticNet, lasso_path, \
enet_path, enet_dual_gap, lasso_dual_gap, \
IterationCallbackFunc, \
lasso_objective, enet_objective
......
File moved
File moved
File moved
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment