-
-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable hover on errorbars plot #721
Conversation
@jlstevens could you please review this PR? We need a fix for this issue (described more in details below) that is currently breaking the build of a few pages of the site (this one for example: https://pyviz-dev.github.io/hvplot/reference/pandas/errorbars.html#pandas-gallery-errorbars). Two runs failed, one on macos & python 3.7 that is expected since there's currently an issue with fiona/pyproj on conda-forge (I'm tracking that), and one on Windows & Python 3.7 that just timed out but ran fine after a previous commit (https://github.com/holoviz/hvplot/runs/5696022365?check_suite_focus=true). Basically it seems that no error bars plot can be rendered with hvplot. A simple example to reproduce is: import hvplot.pandas # noqa
from bokeh.sampledata import perceptions
data = perceptions.numberly.describe().transpose().sort_values('mean')
data.hvplot.scatter(y='mean', ylabel='amount') * data.hvplot.errorbars(y='mean', yerr1='std') which generates this traceback:
|
Fixes issues seen when recently building the dev docs. I don't know why this raised an error while it used to run fine, Bokeh has become more strict in some way?