@@ -122,9 +122,9 @@ def make_subplots(
122
122
Per subplot specifications of subplot type, row/column spanning, and
123
123
spacing.
124
124
125
- ex1: specs=[[{}, {}], [{'colspan': 2}, None]]
125
+ ex1: ` specs=[[{}, {}], [{'colspan': 2}, None]\\ ]
126
126
127
- ex2: specs=[[{'rowspan': 2}, {}], [None, {}]]
127
+ ex2: ` specs=[[{'rowspan': 2}, {}], [None, {}]\\ ]
128
128
129
129
- Indices of the outer list correspond to subplot grid rows
130
130
starting from the top, if start_cell='top-left',
@@ -141,7 +141,7 @@ def make_subplots(
141
141
142
142
- Use None for a blank a subplot cell (or to move past a col/row span).
143
143
144
- - Note that specs[0][0] has the specs of the 'start_cell' subplot.
144
+ - Note that ` specs[0][0\\ ] has the specs of the 'start_cell' subplot.
145
145
146
146
- Each item in 'specs' is a dictionary.
147
147
The available keys are:
@@ -246,8 +246,8 @@ def make_subplots(
246
246
>>> fig = make_subplots(rows=2)
247
247
248
248
This is the format of your plot grid:
249
- [ (1,1) xaxis1,yaxis1 ]
250
- [ (2,1) xaxis2,yaxis2 ]
249
+ \\ [ (1,1) xaxis1,yaxis1 \\ ]
250
+ \\ [ (2,1) xaxis2,yaxis2 \\ ]
251
251
252
252
>>> fig.add_scatter(y=[2, 1, 3], row=1, col=1) # doctest: +ELLIPSIS
253
253
Figure(...)
@@ -262,8 +262,8 @@ def make_subplots(
262
262
>>> fig = make_subplots(rows=2, shared_xaxes=True)
263
263
264
264
This is the format of your plot grid:
265
- [ (1,1) xaxis1,yaxis1 ]
266
- [ (2,1) xaxis2,yaxis2 ]
265
+ \\ [ (1,1) xaxis1,yaxis1 \\ ]
266
+ \\ [ (2,1) xaxis2,yaxis2 \\ ]
267
267
268
268
>>> fig.add_scatter(y=[2, 1, 3], row=1, col=1) # doctest: +ELLIPSIS
269
269
Figure(...)
@@ -278,8 +278,8 @@ def make_subplots(
278
278
... [{'colspan': 2}, None]])
279
279
280
280
This is the format of your plot grid:
281
- [ (1,1) xaxis1,yaxis1 ] [ (1,2) xaxis2,yaxis2 ]
282
- [ (2,1) xaxis3,yaxis3 - ]
281
+ \\ [ (1,1) xaxis1,yaxis1 ] [ (1,2) xaxis2,yaxis2 \\ ]
282
+ \\ [ (2,1) xaxis3,yaxis3 - \\ ]
283
283
284
284
>>> fig.add_trace(go.Scatter(x=[1,2,3], y=[2,1,2]), row=1, col=1) # doctest: +ELLIPSIS
285
285
Figure(...)
@@ -294,10 +294,10 @@ def make_subplots(
294
294
>>> fig = make_subplots(insets=[{'cell': (1,1), 'l': 0.7, 'b': 0.3}])
295
295
296
296
This is the format of your plot grid:
297
- [ (1,1) xaxis1,yaxis1 ]
297
+ \\ [ (1,1) xaxis1,yaxis1 \\ ]
298
298
299
299
With insets:
300
- [ xaxis2,yaxis2 ] over [ (1,1) xaxis1,yaxis1 ]
300
+ \\ [ xaxis2,yaxis2 ] over [ (1,1) xaxis1,yaxis1 \\ ]
301
301
302
302
>>> fig.add_scatter(x=[1,2,3], y=[2,1,1]) # doctest: +ELLIPSIS
303
303
Figure(...)
@@ -310,8 +310,8 @@ def make_subplots(
310
310
>>> fig = make_subplots(rows=2, subplot_titles=('Plot 1','Plot 2'))
311
311
312
312
This is the format of your plot grid:
313
- [ (1,1) x1,y1 ]
314
- [ (2,1) x2,y2 ]
313
+ \\ [ (1,1) x1,y1 \\ ]
314
+ \\ [ (2,1) x2,y2 \\ ]
315
315
316
316
>>> fig.add_scatter(x=[1,2,3], y=[2,1,2], row=1, col=1) # doctest: +ELLIPSIS
317
317
Figure(...)
0 commit comments