I have used calmap to analyze whether data has been imported correctly over the past 2.5 years. I have a few gaps, some of which are easy to explain with holidays. However, I need to google search for those dates to confirm because they are not marked as such by default in the output-calendar. Is there a way to do that automatically? There is none in the documentation for highlighting specific dates. I was thinking of adding an extra df with only holidays for the respective years but I couldn't figure out how to add two dataframes (with different coloring) to the calendar.
Here's the function I am referencing:
import numpy as np
import matplotlib.pyplot as plt
from plotly_calplot import calplot
all_days = pd.date_range('1/1/2019', periods=730, freq='D')
days = np.random.choice(all_days, 500)
events = pd.Series(np.random.randn(len(days)), index=days)
fig = calplot(events, cmap='YlGn', colorbar=False, title="Fantastic Calendar")
fig.show()ยดยดยด