PYTHON MACHINE LEARNING

from sklearn.datasets import load_boston boston = load_boston() print boston.DESCR provides a detailed description of the 506 Boston dataset records Quick visualization of the data: Histogram of prices (this is the target of our dataset) plt.hist(boston.target,bins=50) use bins=50, otherwise it defaults to only 10 plt.xlabel('Price in $1000s') ................
................