1

Here's the code how I use hvplot

from hvplot.sample_data import us_crime

columns = ['Burglary rate', 'Larceny-theft rate', 'Robbery rate', 'Violent Crime rate']


us_crime.plot.violin(y=columns, group_label='Type of crime', value_label='Rate per 100k', invert=True)

But get the following error, does anyone know what might be wrong ?

ValueError: No plugins loaded for this entry: xarray_image
A listing of installable plugins can be found at https://intake.readthedocs.io/en/latest/plugin-directory.html .
zjffdu
  • 25,496
  • 45
  • 109
  • 159

2 Answers2

1

pip3 install intake-xarray (followed by a restart of Jupyter) solved this problem for me. No additional imports were required.

moo
  • 1,597
  • 1
  • 14
  • 29
-1

Works fine for me as long as I import hvplot.xarray first to install hvplot xarray support:

sample output

James A. Bednar
  • 3,195
  • 1
  • 9
  • 13