I want to plot a graph using hvplot.
This one works fine:
plotingmy = results_eravap.plot(y='V/L')
but when I try this:
plotingmy = results_eravap.hvplot(y='V/L')
It throws an error:
Dimensions may not reference duplicated DataFrame columns (found duplicate '-' columns). If you want to plot a column against itself simply declare two dimensions with the same name.
PandasInterface expects tabular data, for more information on supported datatypes see http://holoviews.org/user_guide/Tabular_Datasets.html