scikit learn:
scale
Scikit-Learn is possibly the most popular machine learning framework in the world. In this series of videos we'd like to give an overview of the main features and how you can use the framework to approach most machine learning problems. Do watch all the videos because we also want to highlight the dangers of it.
Notes
You can create the same plot by running this code;
from sklearn.neighbors import KNeighborsRegressor
from sklearn.datasets import load_boston
X, y = load_boston(return_X_y=True)
mod = KNeighborsRegressor().fit(X, y)
pred = mod.predict(X)
plt.scatter(pred, y)
Feedback? See an issue? Something unclear? Feel free to mention it here.
If you want to be kept up to date, consider signing up for the newsletter.