I am using jupyter with pycharm. When I try to plot data with hvplot, I get an error saying "Output type is currently not supported". I assume pycharm doesn't support javascript. Does anyone know how to solve this issue? My code is like this:
import pandas
import hvplot.pandas
df = pd.read_csv(fle)
df.hvplot(x='x label', y=['y label 1', 'y label 2'])