Skip to content

Commit 98ec7f7

Browse files
author
“mahdis-z”
committed
fixing code
1 parent 1a7e61b commit 98ec7f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/histograms.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -303,19 +303,19 @@ trace3 = go.Histogram(x=x,
303303
xbins=dict(
304304
start='1969-11-15',
305305
end='1972-03-31',
306-
size='M18'), # M18 stands for 18 months)
306+
size='M18')) # M18 stands for 18 months
307307

308308
trace4 = go.Histogram(x=x,
309309
xbins=dict(
310310
start='1969-11-15',
311311
end='1972-03-31',
312-
size='M4') # 4 months bin size)
312+
size='M4')) # M4 months bin size
313313

314314
trace5 = go.Histogram(x=x,
315315
xbins=dict(
316316
start='1969-11-15',
317317
end='1972-03-31',
318-
size='M2'), # 2 months)
318+
size='M2')) # M2 months
319319

320320
fig.append_trace(trace0, 1, 1)
321321
fig.append_trace(trace1, 1, 2)

0 commit comments

Comments
 (0)