-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
enhancementNew feature or requestNew feature or request
Description
It might be nice to always or behind a flag bring None or NaN values to the back in the Z axis of the scatter plot.
One way to do that is to perform a sort operation, such as:
data = data.sort_values("x", na_position="first")
It works well but comes at the cost of a sort operation and won't work when the color_by
value is modified dynamically.
I am not familiar with the API and the JS code, but maybe there is a way to efficiently modify the z
for None or NaN values?
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request