Home Polars 🤝 Matplotlib
Post
Cancel

Polars 🤝 Matplotlib

This post was created while writing my Up & Running with Polars course. Check it out here with a free preview of the first chapters

Polars gets on well with matplotlib.

To make a bar chart for example we pass columns directly from a Polars dataframe.

In the first example below we see the maximum wave height from Irish wave buoys in the North Atlantic (this is just a snippet to give you an idea of how it works).

1
2
3
4
5
6
7
8
9
stationAggs = stationAggs.sort("significant_wave_height_max").tail(6)

fig, ax = plt.subplots()

ax.barh(
    y=stationAggs["stationID"],
    width=stationAggs["significant_wave_height_max"],
)
ax.set_xlabel('Max wave height (m)')

Maximum wave height at Irish wave buoys

Can we do some storm-tracking as well?

In the second example we take 3 hour averages of the wave height for each station with the fast groupby_dynamic method.

To do multi-line plots we need to call the ax.plot method for each line. When can do this by looping through a groupby object to get the data for each station and see a storm with some chunky waves arriving on 26th September.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Average time series for each station into 3 hour windows
averagedValuesDf = (
    dfBigWaves
    .groupby_dynamic("time","3h",by="stationID")
     .agg(
            pl.col("significant_wave_height").mean()
        )
)
fig,ax = plt.subplots(figsize=(12, 4), dpi=80)
# Loop through the groupby to get the values for each station
for stationDf in averagedValuesDf.groupby("stationID"):
    stationID = stationDf[0,0]
    # Add a line for each station
    ax.plot(
        stationDf["time"],
        stationDf["significant_wave_height"],
        label=stationID
)
plt.legend()

Time series of wave height at Irish wave buoys

Learn more

Want to know more about Polars for high performance data science and ML? Then you can:

or let me know if you would like a Polars workshop for your organisation.

This post is licensed under CC BY 4.0 by the author.