We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Create scatter plot with random data:
data = pd.DataFrame({ "x": np.random.rand(1000), "y": np.random.rand(1000), "z": np.random.rand(1000), }) scatter = Scatter(data=data, x="x", y="y") scatter.filter() scatter.show()
Show only points for which x > 0.5
indices = list(data[data['x']>0.5].index) scatter.filter(indices)
Each of the following lines resets the selection:
scatter.color(by = 'z') scatter.size(by = 'z') scatter.x('y') scatter.y('x')
The text was updated successfully, but these errors were encountered:
Thanks for reporting the issue. This seems to be a bug in regl-scatterplot. I'm investigating
Sorry, something went wrong.
Fixed in 5dbceff and released as v0.16.1.
No branches or pull requests
Create scatter plot with random data:
Show only points for which x > 0.5
Each of the following lines resets the selection:
The text was updated successfully, but these errors were encountered: