Given the following example from here, I would like to not display the rows for Saturday or Sunday. I have tried resampling the dataframe without weekends before using it in the calmap function, but the source code shows that missing days are automatically added.
import numpy as np; np.random.seed(sum(map(ord, 'calmap')))
import pandas as pd
import calmap
all_days = pd.date_range('1/15/2014', periods=700, freq='D')
days = np.random.choice(all_days, 500)
events = pd.Series(np.random.randn(len(days)), index=days)
calmap.yearplot(events, year=2015)