Skip to content

Commit

Permalink
Scatter progress
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpeters1208 committed Jul 25, 2024
1 parent 86c1b73 commit 4e4cc91
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 98 deletions.
4 changes: 3 additions & 1 deletion plugins/plotly-express/docs/scatter-3d.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ iris_3d = dx.scatter_3d(iris, x="sepal_width", y="sepal_length", z="petal_width"

### Size markers by a quantitative variable

Use the size of the markers in a 3D scatter plot to visualize a fourth quantitative variable. Such a plot is commonly called a bubble plot.
Use the size of the markers in a 3D scatter plot to visualize a fourth quantitative variable. Such a plot is commonly called a bubble plot, where the size of each bubble corresponds to the value of the additional variable.

The `size` argument interprets the values in the given column as pixel size, so you may consider scaling or normalizing these values before creating the bubble chart.

```python order=iris_3d_bubble,iris
import deephaven.plot.express as dx
Expand Down
Loading

0 comments on commit 4e4cc91

Please sign in to comment.