11.3 - Histogram and Scatter Plot

preview_player
Показать описание
Plotting a few histograms, adding some transparency, and then plotting a good ol' scatter plot.

Note that I'm importing the plotting tool using the namespace, but on the course website I did it the other way (from pylab import *). Just remember to include the namespace if you do it the way I'm doing it in this video.

VERSION WARNING: If you're not Python 2.7, that's cool. All of the stuff will work the same EXCEPT for the print statement. Just make this change...

change: print something
to: print(something)
Рекомендации по теме