Lecture 11
matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python.
matplotlib.pyplotis a collection of functions that make matplotlib work like MATLAB. Eachpyplotfunction makes some change to a figure: e.g., creates a figure, creates a plotting area in a figure, plots some lines in a plotting area, decorates the plot with labels, etc.
Figure - The entire plot (including subplots)
Axes - Subplot attached to a figure, contains the region for plotting data and x & y axis
Axis - Set the scale and limits, generate ticks and ticklabels
Artist - Everything visible on a figure: text, lines, axis, axes, etc.
x = np.linspace(0, 2*np.pi, 30)
y1 = np.sin(x)
y2 = np.cos(x)
fig, (ax1, ax2) = plt.subplots(
2, 1, figsize=(6, 6)
)
fig.suptitle("Main title")
ax1.plot(x, y1, "--b", label="sin(x)")
ax1.set_title("subplot 1")
ax1.legend()
ax2.plot(x, y2, ".-r", label="cos(x)")
ax2.set_title("subplot 2")
ax2.legend()x = np.linspace(0, 2*np.pi, 30)
y1 = np.sin(x)
y2 = np.cos(x)
plt.figure(figsize=(6, 6))
plt.suptitle("Main title")
plt.subplot(211)
plt.plot(x, y1, "--b", label="sin(x)")
plt.title("subplot 1")
plt.legend()
plt.subplot(2,1,2)
plt.plot(x, y2, ".-r", label="cos(x)")
plt.title("subplot 2")
plt.legend()
plt.show()x = np.linspace(-2, 2, 101)
fig, axs = plt.subplots(
2, 2,
figsize=(5, 5)
)
fig.suptitle("More subplots")
axs[0,0].plot(x, x, "b", label="linear")
axs[0,1].plot(x, x**2, "r", label="quadratic")
axs[1,0].plot(x, x**3, "g", label="cubic")
axs[1,1].plot(x, x**4, "c", label="quartic")
for ax in axs.flat:
ax.legend()axs here is a 2x2 numpy array of axes
x = np.linspace(-2, 2, 101)
fig, axd = plt.subplot_mosaic(
[['upleft', 'right'],
['lowleft', 'right']],
figsize=(5, 5)
)
axd['upleft' ].plot(x, x, "b")
axd['lowleft'].plot(x, x**2, "r")
axd['right' ].plot(x, x**3, "g")
axd['upleft'].set_title("Linear")
axd['lowleft'].set_title("Quadratic")
axd['right'].set_title("Cubic")axd here is a dictionary of axes
For quick formatting of plots (scatter and line) format strings are a useful shorthand. Generally they use the format '[marker][line][color]',
Markers
| character | shape |
|---|---|
. |
point |
, |
pixel |
o |
circle |
v |
triangle down |
^ |
triangle up |
< |
triangle left |
> |
triangle right |
| … | + more |
Lines
| character | line style |
|---|---|
- |
solid |
-- |
dashed |
-. |
dash-dot |
: |
dotted |
Colors
| character | color |
|---|---|
b |
blue |
g |
green |
r |
red |
c |
cyan |
m |
magenta |
y |
yellow |
k |
black |
w |
white |
Beyond creating plots for arrays (and lists), addressable objects like dicts and DataFrames can be used via data,
np.random.seed(19680801)
d = {
'x': np.arange(50),
'color': np.random.randint(0, 50, 50),
'size': np.abs(np.random.randn(50)) * 100
}
d['y'] = d['x'] + 10 * np.random.randn(50)
plt.figure(figsize=(6, 3))
plt.scatter(
'x', 'y', c='color', s='size',
data=d
)
plt.xlabel("x-axis")
plt.ylabel("y-axis")
plt.show()To fix the axis label clipping, we can use the “constrained” layout to adjust automatically,
np.random.seed(19680801)
d = {
'x': np.arange(50),
'color': np.random.randint(0, 50, 50),
'size': np.abs(np.random.randn(50)) * 100
}
d['y'] = d['x'] + 10 * np.random.randn(50)
plt.figure(
figsize=(6, 3),
layout="constrained"
)
plt.scatter(
'x', 'y', c='color', s='size',
data=d
)
plt.xlabel("x-axis")
plt.ylabel("y-axis")
plt.show()Data can also come from DataFrame objects or series,
rho = 0.75
n = 10000
df = pd.DataFrame({
"x": np.random.normal(size=n)
}).assign(
y = lambda d:
np.random.normal(
rho*d.x, np.sqrt(1-rho**2),
size=n
)
)
fig, ax = plt.subplots(figsize=(5,5))
ax.scatter('x', 'y', c='k', data=df,
alpha=0.1, s=0.5)
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.set_title(f"Bivariate normal ($\\rho={rho}$)")Polars DataFrames can also be used via the data argument,
rho = -0.95
n = 10000
df = pl.DataFrame({
"x": np.random.normal(size=n)
}).with_columns(
y = rho*pl.col("x") +
np.random.normal(0, np.sqrt(1-rho**2), size=n)
)
fig, ax = plt.subplots(figsize=(5,5))
ax.scatter('x', 'y', c='k', data=df,
alpha=0.1, s=0.5)
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.set_title(f"Bivariate normal ($\\rho={rho}$)")Axis scales can be changed via plt.xscale(), plt.yscale(), ax.set_xscale(), or ax.set_yscale().
y = np.sort( np.random.sample(size=1000) )
x = np.arange(len(y))
plt.figure(figsize=(5,5),
layout="constrained")
scales=['linear', 'log', 'symlog', 'logit']
for i, scale in enumerate(scales):
plt.subplot(411+i)
plt.plot(x, y)
plt.grid(True)
if scale == 'symlog':
plt.yscale(scale, linthresh=0.01)
else:
plt.yscale(scale)
plt.title(scale)
plt.show()df = pd.DataFrame({
"cat": ["A", "B", "C", "D", "E"],
"value": np.exp(range(5))
})
plt.figure(figsize=(4, 6), layout="constrained")
plt.subplot(321)
plt.scatter("cat", "value", data=df)
plt.subplot(322)
plt.scatter("value", "cat", data=df)
plt.subplot(323)
plt.plot("cat", "value", data=df)
plt.subplot(324)
plt.plot("value", "cat", data=df)
plt.subplot(325)
b = plt.bar("cat", "value", data=df)
plt.subplot(326)
b = plt.bar("value", "cat", data=df)
plt.show()df = pd.DataFrame({
"x1": np.random.normal(size=100),
"x2": np.random.normal(1,2, size=100)
})
plt.figure(figsize=(4, 6), layout="constrained")
plt.subplot(311)
h = plt.hist("x1", bins=10, data=df, alpha=0.5)
h = plt.hist("x2", bins=10, data=df, alpha=0.5)
plt.subplot(312)
h = plt.hist(df, alpha=0.5)
plt.subplot(313)
h = plt.hist(df, stacked=True, alpha=0.5)
plt.show()Seaborn is a library for making statistical graphics in Python. It builds on top of matplotlib and integrates closely with pandas data structures.
Seaborn helps you explore and understand your data. Its plotting functions operate on dataframes and arrays containing whole datasets and internally perform the necessary semantic mapping and statistical aggregation to produce informative plots. Its dataset-oriented, declarative API lets you focus on what the different elements of your plots mean, rather than on the details of how to draw them.
| species | island | bill_length_mm | bill_depth_mm | flipper_length_mm | body_mass_g | sex | |
|---|---|---|---|---|---|---|---|
| 0 | Adelie | Torgersen | 39.1 | 18.7 | 181.0 | 3750.0 | Male |
| 1 | Adelie | Torgersen | 39.5 | 17.4 | 186.0 | 3800.0 | Female |
| 2 | Adelie | Torgersen | 40.3 | 18.0 | 195.0 | 3250.0 | Female |
| 3 | Adelie | Torgersen | NaN | NaN | NaN | NaN | NaN |
| 4 | Adelie | Torgersen | 36.7 | 19.3 | 193.0 | 3450.0 | Female |
| ... | ... | ... | ... | ... | ... | ... | ... |
| 339 | Gentoo | Biscoe | NaN | NaN | NaN | NaN | NaN |
| 340 | Gentoo | Biscoe | 46.8 | 14.3 | 215.0 | 4850.0 | Female |
| 341 | Gentoo | Biscoe | 50.4 | 15.7 | 222.0 | 5750.0 | Male |
| 342 | Gentoo | Biscoe | 45.2 | 14.8 | 212.0 | 5200.0 | Female |
| 343 | Gentoo | Biscoe | 49.9 | 16.1 | 213.0 | 5400.0 | Male |
344 rows × 7 columns
To adjust the size of plots generated via a figure-level plotting function, adjust the aspect and height arguments, where figure width = aspect * height.
Figure-level plotting methods return a FacetGrid object (which is a wrapper around lower-level pyplot figure(s) and axes).
| Method | Description |
|---|---|
add_legend() |
Draw a legend, maybe placing it outside axes and resizing the figure |
despine() |
Remove axis spines from the facets. |
facet_axis() |
Make the axis identified by these indices active and return it. |
facet_data() |
Generator for name indices and data subsets for each facet. |
map() |
Apply a plotting function to each facet’s subset of the data. |
map_dataframe() |
Like .map() but passes args as strings and inserts data in kwargs. |
refline() |
Add a reference line(s) to each facet. |
savefig() |
Save an image of the plot. |
set() |
Set attributes on each subplot Axes. |
set_axis_labels() |
Set axis labels on the left column and bottom row of the grid. |
set_titles() |
Draw titles either above each facet or on the grid margins. |
set_xlabels() |
Label the x axis on the bottom row of the grid. |
set_xticklabels() |
Set x axis tick labels of the grid. |
set_ylabels() |
Label the y axis on the left column of the grid. |
set_yticklabels() |
Set y axis tick labels on the left column of the grid. |
tight_layout() |
Call fig.tight_layout within rect that excludes the legend. |
| Attribute | Description |
|---|---|
ax |
The matplotlib.axes.Axes when no faceting variables are assigned. |
axes |
An array of the matplotlib.axes.Axes objects in the grid. |
axes_dict |
A mapping of facet names to corresponding matplotlib.axes.Axes. |
figure |
Access the matplotlib.figure.Figure object underlying the grid. |
legend |
The matplotlib.legend.Legend object, if present. |
There is one additional figure-level plot type - lmplot(), which is a convenient interface to fitting and plotting regression models across subsets of data,
These functions return a matplotlib.axes.Axes object instead of a FacetGrid, giving more direct control over the plot using basic matplotlib tools.
fig, axs = plt.subplots(
2, 1, figsize=(4,6),
layout = "constrained",
sharex=True
)
sns.scatterplot(
data = penguins,
x = "bill_length_mm", y = "bill_depth_mm",
hue = "species",
ax = axs[0]
)
axs[0].get_legend().remove()
sns.kdeplot(
data = penguins,
x = "bill_length_mm", hue = "species",
fill=True, alpha=0.5,
ax = axs[1]
)
plt.show()plt.figure(figsize=(5,5),
layout = "constrained")
sns.kdeplot(
data = penguins,
x = "bill_length_mm", y = "bill_depth_mm",
hue = "species"
)
sns.scatterplot(
data = penguins,
x = "bill_length_mm", y = "bill_depth_mm",
hue = "species", alpha=0.5
)
sns.rugplot(
data = penguins,
x = "bill_length_mm", y = "bill_depth_mm",
hue = "species"
)
plt.legend()
plt.show()Seaborn comes with a number of themes (darkgrid, whitegrid, dark, white, and ticks) which can be enabled at the figure level with sns.set_theme() or at the axes level with sns.axes_style().
All of the examples below use sns.color_palette(). The continuous palettes additionally use as_cmap=True,
Palettes are applied via the set_palette() function,
The
seaborn.objectsinterface is a newer declarative API (v0.12+) for composing plots from layers of marks, stats, and moves. It aims to support end-to-end plot specification and customization without dropping down to matplotlib.
The key building blocks are:
Plot - the core object, initialized with data and variable mappingsMark - visual representations (e.g., Dot, Line, Bar, Area)Stat - statistical transforms (e.g., Agg, Hist, Est)Move - positional adjustments (e.g., Dodge, Jitter, Stack)Scale - controls data-to-visual mappings (e.g., Continuous, Nominal)Plots are built by chaining .add() calls, each specifying a layer with a mark and optional stat/move,
Multiple .add() calls create layers, and Stat objects transform data before rendering,
The .facet() method creates subplots by data variables,
Move objects adjust positions (e.g., dodging, jittering, stacking) and Scale objects control data-to-visual mappings,
Sta 663 - Spring 2026