Home
Softono

Dayplot

Open source MIT Python
148
Stars
5
Forks
1
Issues
2
Watchers
6 months
Last Commit

 About Dayplot

Calendar heatmaps made super simple and highly customizable

Platforms

Web Self-hosted

Languages

Python

Need Help Installing Dayplot?

We provide expert installation service for this software. Our team will install, configure, and secure Dayplot on your server. plans start at just $30.

dayplot

dayplot logo

A simple-to-use Python library to build calendar heatmaps with ease.

It's built on top of matplotlib and leverages it to access high customization possibilities.

PyPI Downloads Coverage


Quick start

import matplotlib.pyplot as plt
import dayplot as dp

df = dp.load_dataset()

fig, ax = plt.subplots(figsize=(15, 6))
dp.calendar(
    dates=df["dates"],
    values=df["values"],
    start_date="2024-01-01",
    end_date="2024-12-31",
    ax=ax,
)

More examples in the documentation.


Installation

pip install dayplot

Related projects