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
In a stacked area plot, each row of `data_frame` is represented as vertex of a polyline mark in 2D space. The area between successive polylines is filled.
247
+
In a stacked area plot, each row of `data_frame` is represented as vertex
248
+
of a polyline mark in 2D space. The area between successive polylines is
249
+
filled.
246
250
"""
247
251
returnmake_figure(
248
252
args=locals(),
@@ -293,7 +297,8 @@ def bar(
293
297
height=None,
294
298
):
295
299
"""
296
-
In a bar plot, each row of `data_frame` is represented as a rectangular mark.
300
+
In a bar plot, each row of `data_frame` is represented as a rectangular
301
+
mark.
297
302
"""
298
303
returnmake_figure(
299
304
args=locals(),
@@ -340,9 +345,10 @@ def histogram(
340
345
height=None,
341
346
):
342
347
"""
343
-
In a histogram, rows of `data_frame` are grouped together into a rectangular mark to \
344
-
visualize the 1D distribution of an aggregate function `histfunc` (e.g. the count or sum) \
345
-
of the value `y` (or `x` if `orientation` is `'h'`).
348
+
In a histogram, rows of `data_frame` are grouped together into a
349
+
rectangular mark to visualize the 1D distribution of an aggregate function
350
+
`histfunc` (e.g. the count or sum) of the value `y` (or `x` if
351
+
`orientation` is `'h'`).
346
352
"""
347
353
returnmake_figure(
348
354
args=locals(),
@@ -393,8 +399,8 @@ def violin(
393
399
height=None,
394
400
):
395
401
"""
396
-
In a violin plot, rows of `data_frame` are grouped together into a curved mark to \
397
-
visualize their distribution.
402
+
In a violin plot, rows of `data_frame` are grouped together into a curved
403
+
mark to visualize their distribution.
398
404
"""
399
405
returnmake_figure(
400
406
args=locals(),
@@ -444,8 +450,8 @@ def box(
444
450
height=None,
445
451
):
446
452
"""
447
-
In a box plot, rows of `data_frame` are grouped together into a box-and-whisker mark to \
448
-
visualize their distribution.
453
+
In a box plot, rows of `data_frame` are grouped together into a
454
+
box-and-whisker mark to visualize their distribution.
449
455
"""
450
456
returnmake_figure(
451
457
args=locals(),
@@ -488,7 +494,8 @@ def strip(
488
494
height=None,
489
495
):
490
496
"""
491
-
In a strip plot each row of `data_frame` is represented as a jittered mark within categories.
497
+
In a strip plot each row of `data_frame` is represented as a jittered mark
498
+
within categories.
492
499
"""
493
500
returnmake_figure(
494
501
args=locals(),
@@ -553,7 +560,8 @@ def scatter_3d(
553
560
height=None,
554
561
):
555
562
"""
556
-
In a 3D scatter plot, each row of `data_frame` is represented by a symbol mark in 3D space.
563
+
In a 3D scatter plot, each row of `data_frame` is represented by a symbol
0 commit comments