I tried to replicate the Gapminder example in the Holoviews gallery with Holoviews 1.13.2 and pandas 1.0.3 and got this:
<ipython-input-43-2f019144328a>:14: FutureWarning: The Panel class is removed from pandas. Accessing it from the top-level namespace will also be removed in the next version
panel = pd.Panel({'Fertility': gapminder.fertility,
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-43-2f019144328a> in <module>
12
13 # Declare dataset
---> 14 panel = pd.Panel({'Fertility': gapminder.fertility,
15 'Population': gapminder.population,
16 'Life expectancy': gapminder.life_expectancy})
TypeError: Panel() takes no arguments
I tried to replicate the Gapminder example in the Holoviews gallery with Holoviews 1.13.2 and pandas 1.0.3 and got this: