I am trying to plot a time-serie with a filter using hvplot. The only problems I have is that I want multiple columns in my filter. Here is the dataframe I have:
date city Prod1 Prod2 Prod3 Prod4
01/07/2012 Limoges 24 45 12 7
02/07/2012 Lyon 39 36 31 27
03/07/2012 Paris 57 48 48 32
I am able to do show the following:
df.hvplot(kind='line', x='date', y= 'Prod1', groupby='city')
However, what I ultimately want is to show all the 3 cities on the time-series and have all the products in a filter so I can see how they all behaviour with respect to each product.