Created
January 18, 2017 02:59
-
-
Save josep2/d5481380e6fe5ac7cb53f437556e0ed8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sklearn.linear_model import LinearRegression | |
lr = LinearRegression() | |
x = <Some independent data> | |
y = <Some Dependent data> | |
lr.fit(x, y) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment