0

这是我如何使用 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)

但是得到以下错误,有谁知道可能是什么问题?

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 .
4

1 回答 1

-1

只要我import hvplot.xarray首先安装 hvplot xarray 支持,我就可以正常工作:

样本输出

于 2021-06-12T21:13:20.487 回答