Hello,
I have a large dask.dataframe.core.DataFrame
, with a column ‘AGE’, and dtype float:
AGE float64
When I want to create a box plot as below, I’m getting an error:
df.hvplot.box(y=‘AGE’)
~/anaconda/envs/eda-with-holoviz/lib/python3.7/site-packages/holoviews/plotting/bokeh/stats.py in _box_stats(self, vals)
157 vals = vals[is_finite(vals)]
158
–> 159 if len(vals):
160 q1, q2, q3 = (percentile(vals, q=q) for q in range(25, 100, 25))
161 iqr = q3 - q1TypeError: ‘float’ object cannot be interpreted as an integer
Can you please help?