We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/mljar/mljar-examples/blob/master/House_price_regression/House_price_regression.ipynb
based on sci-kit learn's own documentation, the Boston housing prices data set has some issues and should not be used: https://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_boston.html
recommend adding from sklearn.datasets import fetch_openml and housing = fetch_openml(name="house_prices", as_frame=True)
from sklearn.datasets import fetch_openml
housing = fetch_openml(name="house_prices", as_frame=True)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/mljar/mljar-examples/blob/master/House_price_regression/House_price_regression.ipynb
based on sci-kit learn's own documentation, the Boston housing prices data set has some issues and should not be used:
https://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_boston.html
recommend adding
from sklearn.datasets import fetch_openml
and
housing = fetch_openml(name="house_prices", as_frame=True)
The text was updated successfully, but these errors were encountered: