You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example shows how to use [bingroup](https://plotly.com/python/reference/#histogram-bingroup) attribute to have a compatible bin settings for both histograms. To define `start`, `end` and `size` value of x-axis and y-axis seperatly, set [ybins](https://plotly.com/python/reference/#histogram2dcontour-ybins) and `xbins`.
140
+
This example shows how to use [bingroup](https://plotly.com/python/reference/histogram/#histogram-bingroup) attribute to have a compatible bin settings for both histograms. To define `start`, `end` and `size` value of x-axis and y-axis seperatly, set [ybins](https://plotly.com/python/reference/histogram2dcontour/#histogram2dcontour-ybins) and `xbins`.
141
141
142
142
```python
143
143
import plotly.graph_objects as go
@@ -236,4 +236,4 @@ fig.show()
236
236
```
237
237
238
238
#### Reference
239
-
See https://plotly.com/python/reference/#histogram2d for more information and chart attribute options!
239
+
See https://plotly.com/python/reference/histogram2d/ for more information and chart attribute options!
sizeref=750, # info on sizeref: https://plotly.com/python/reference/#scatter-marker-sizeref
110
+
sizeref=750, # info on sizeref: https://plotly.com/python/reference/scatter/#scatter-marker-sizeref
111
111
size= planet_diameter,
112
112
color= planet_colors,
113
113
)
@@ -146,7 +146,7 @@ fig = go.Figure(go.Scatter3d(
146
146
mode='markers',
147
147
marker=dict(
148
148
sizemode='diameter',
149
-
sizeref=750, # info on sizeref: https://plotly.com/python/reference/#scatter-marker-sizeref
149
+
sizeref=750, # info on sizeref: https://plotly.com/python/reference/scatter/#scatter-marker-sizeref
150
150
size= planet_diameter,
151
151
color= temperatures,
152
152
colorbar_title='Mean<br>Temperature',
@@ -166,4 +166,4 @@ fig.show()
166
166
167
167
#### Reference
168
168
169
-
See https://plotly.com/python/reference/#scatter3d and https://plotly.com/python/reference/#scatter-marker-sizeref <br>for more information and chart attribute options!
169
+
See https://plotly.com/python/reference/scatter3d/ and https://plotly.com/python/reference/scatter/#scatter-marker-sizeref <br>for more information and chart attribute options!
0 commit comments