Python Programming/matplotlib
Appearance
From Wikibooks, open books for an open world
matplotlib is a Python library that allows Python to be used like Matlab, visualizing data on the fly. It is able to create plots, histograms, power spectra, bar charts, errorcharts, scatterplots, etc. It can be used from normal Python and also from iPython.
Examples:
Plot a data series that represents the square function:
frommatplotlibimport pyplot as plt data = [x * x for x in range(20)] plt.plot(data) plt.show()
Plot a data series that represents the square function but in reverse order, by providing not only the series of the y-axis values but also the series of x-axis values:
frommatplotlibimport pyplot as plt datax = list(range(20)) datax.reverse() datay = [x * x for x in range(20)] plt.plot(datax, datay) plt.show()
Plot the square function, setting the limits for the y-axis:
frommatplotlibimport pyplot as plt data = [x * x for x in range(20)] plt.ylim(-500, 500) # Set limits of y-axis plt.plot(data) plt.show()
Links
[edit | edit source ]- matplotlib, matplotlib.org
- Pyplot tutorial, matplotlib.org
- Plotting, wiki.python.org