Data Visualization - Introduction To Matplotlib Cheatsheet - Codecademy
Data Visualization - Introduction To Matplotlib Cheatsheet - Codecademy
Introduction to Matplotlib
Pyplot functions
The Python library Matplotlib contains the pyplot module, which provides users with an
interface for graphing data. Pyplot contains over 100 functions, from acorr to yticks. You
must import the module, and plt is the standard variable name used.
Matplotlib’s
Legend pyplot.axis function
places a takes
legendone parameter,
on the axes which must be a four-item array,
and returns the current axes’
Figure limits.
creates Thefigure
a new four items should contain enough info to define
an x axis and a y axis by minimum
Savefig
and maximum values. The array must order these
saves the current figure
values as follows: x-axis minimum, x-axis maximum, y-axis minimum, y-axis maximum.
https://author.codecademy.com/learning-standards/5cc9c73faf246d6f7689df89
x = range(12)
y = [2,8,20,40,70,300,930,7000,68000,500000,4000000, 2000000]
plt.plot(x, y)
#x-axis minimum is 0, x-axis maximum is 11; y-axis minimum is 300, y-axis maximum is
500000
plt.axis([0,11,300,500000])
plt.show()
https://www.codecademy.com/learn/paths/data-science/tracks/data-visualization/modules/dspath-matplotlib/cheatsheet 1/3
5/10/2020 Data Visualization: Introduction to Matplotlib Cheatsheet | Codecademy
# Left Plot
plt.subplot(1, 2, 1)
plt.plot([-2, -1, 0, 1, 2], [4, 1, 0, 1, 4])
# Right Plot
plt.subplot(1, 2, 2)
plt.plot([-2, -1, 0, 1, 2], [4, 1, 0, 1, 4])
# Subplot Adjust
plt.subplots_adjust(wspace=1.3)
plt.show()
ax = plt.subplot()
https://www.codecademy.com/learn/paths/data-science/tracks/data-visualization/modules/dspath-matplotlib/cheatsheet 2/3
5/10/2020 Data Visualization: Introduction to Matplotlib Cheatsheet | Codecademy
Subplots in Matplotlib
In Python, the Matplotlib’s pyplot.subplot() function can be used to create a figure with
a grid of subplots. The function accepts number of rows, number of columns, and the
current index as arguments.
# Datasets
x = [1, 2, 3, 4]
y = [1, 2, 3, 4]
# First Subplot
plt.subplot(1, 2, 1)
plt.plot(x,y, color='green')
plt.title('First Subplot')
# Second Subplot
plt.subplot(1, 2, 2)
plt.plot(x,y, color='blue')
plt.title('Second Subplot')
Figures in Matplotlib
In Python’s Matplotlib, a figure is a container that holds plots. It can hold a single plot or
multiple plots. When a figure holds multiple separate plots, those are called subplots.
https://www.codecademy.com/learn/paths/data-science/tracks/data-visualization/modules/dspath-matplotlib/cheatsheet 3/3