Untitled

 avatar
unknown
plain_text
2 years ago
402 B
13
Indexable
import calplot
from datetime import datetime
import pandas as pd
import matplotlib as plt

series = {
    datetime(2023,12,22): 5,
    datetime(2023,12,23): 6,
    datetime(2023,12,24): 7
}
events = pd.Series(data=series)
print(events)
calplot.calplot(events)


# The code gets this error:

# findfont: Font family 'Helvetica' not found.
# findfont: Font family 'Helvetica' not found.
Editor is loading...
Leave a Comment