@@ -122,9 +122,9 @@ def make_subplots(
122122 Per subplot specifications of subplot type, row/column spanning, and
123123 spacing.
124124
125- ex1: specs=[[{}, {}], [{'colspan': 2}, None]]
125+ ex1: ` specs=[[{}, {}], [{'colspan': 2}, None]\\ ]
126126
127- ex2: specs=[[{'rowspan': 2}, {}], [None, {}]]
127+ ex2: ` specs=[[{'rowspan': 2}, {}], [None, {}]\\ ]
128128
129129 - Indices of the outer list correspond to subplot grid rows
130130 starting from the top, if start_cell='top-left',
@@ -141,7 +141,7 @@ def make_subplots(
141141
142142 - Use None for a blank a subplot cell (or to move past a col/row span).
143143
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.
145145
146146 - Each item in 'specs' is a dictionary.
147147 The available keys are:
@@ -246,8 +246,8 @@ def make_subplots(
246246 >>> fig = make_subplots(rows=2)
247247
248248 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 \\ ]
251251
252252 >>> fig.add_scatter(y=[2, 1, 3], row=1, col=1) # doctest: +ELLIPSIS
253253 Figure(...)
@@ -262,8 +262,8 @@ def make_subplots(
262262 >>> fig = make_subplots(rows=2, shared_xaxes=True)
263263
264264 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 \\ ]
267267
268268 >>> fig.add_scatter(y=[2, 1, 3], row=1, col=1) # doctest: +ELLIPSIS
269269 Figure(...)
@@ -278,8 +278,8 @@ def make_subplots(
278278 ... [{'colspan': 2}, None]])
279279
280280 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 - \\ ]
283283
284284 >>> fig.add_trace(go.Scatter(x=[1,2,3], y=[2,1,2]), row=1, col=1) # doctest: +ELLIPSIS
285285 Figure(...)
@@ -294,10 +294,10 @@ def make_subplots(
294294 >>> fig = make_subplots(insets=[{'cell': (1,1), 'l': 0.7, 'b': 0.3}])
295295
296296 This is the format of your plot grid:
297- [ (1,1) xaxis1,yaxis1 ]
297+ \\ [ (1,1) xaxis1,yaxis1 \\ ]
298298
299299 With insets:
300- [ xaxis2,yaxis2 ] over [ (1,1) xaxis1,yaxis1 ]
300+ \\ [ xaxis2,yaxis2 ] over [ (1,1) xaxis1,yaxis1 \\ ]
301301
302302 >>> fig.add_scatter(x=[1,2,3], y=[2,1,1]) # doctest: +ELLIPSIS
303303 Figure(...)
@@ -310,8 +310,8 @@ def make_subplots(
310310 >>> fig = make_subplots(rows=2, subplot_titles=('Plot 1','Plot 2'))
311311
312312 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 \\ ]
315315
316316 >>> fig.add_scatter(x=[1,2,3], y=[2,1,2], row=1, col=1) # doctest: +ELLIPSIS
317317 Figure(...)
0 commit comments