Simon Høxbro Hansen

Results 143 comments of Simon Høxbro Hansen

I have already noticed the polars implementation of lazy import (in the original polars plot PR), and I definitely want to add something similar to our packages. Other than initializing...

It is likely some old js cache that messes things up. Try the following steps. 1) Clear the notebook and save. 2) Close all the notebooks. 3) Hard refresh the...

This is because the `xformatter` string is not a printf formatted string but a datetime one, this is also what is mentioned in the docstring. I can be recreated in...

We still use printf formatting for numbers even with the new Python format: `f"{1:0.2f}"`. What is happening in Python uses the `__format__`, to determine how it should format the object....

> Maybe @Hoxbro remembers? I haven't seen this before, so unfortunately, there is no help from me :slightly_frowning_face:

This should be fixed when using Bokeh 3.2 or greater. This website should automatically be updated with the next release.

Are you getting this error with the code in the example, or are you playing around with the code yourself? For the first example `np.nanmean` does not know how to...

I can reproduce it with the code given above. Only plotting the bar returns this: ![image](https://user-images.githubusercontent.com/19758978/231990572-0dde5a68-c51d-45ba-b32d-7a42bbe884a3.png) Where all bars are plotted over each other. Transposing the DataFrame gives a more...

Can you share a [minimal, reproducible example (MRE)](https://stackoverflow.com/help/minimal-reproducible-example)?

Looking at the error, I can see it happens in Panel, so the fix maybe be needed there. As a work-around for now you can ``` python import pandas as...