@@ -258,7 +258,7 @@ def line(
258
258
height = None ,
259
259
) -> go .Figure :
260
260
"""
261
- In a 2D line plot, each row of `data_frame` is represented as vertex of
261
+ In a 2D line plot, each row of `data_frame` is represented as a vertex of
262
262
a polyline mark in 2D space.
263
263
"""
264
264
return make_figure (args = locals (), constructor = go .Scatter )
@@ -309,8 +309,8 @@ def area(
309
309
) -> go .Figure :
310
310
"""
311
311
In a stacked area plot, each row of `data_frame` is represented as
312
- vertex of a polyline mark in 2D space. The area between successive
313
- polylines is filled.
312
+ a vertex of a polyline mark in 2D space. The area between
313
+ successive polylines is filled.
314
314
"""
315
315
return make_figure (
316
316
args = locals (),
@@ -821,7 +821,7 @@ def line_3d(
821
821
height = None ,
822
822
) -> go .Figure :
823
823
"""
824
- In a 3D line plot, each row of `data_frame` is represented as vertex of
824
+ In a 3D line plot, each row of `data_frame` is represented as a vertex of
825
825
a polyline mark in 3D space.
826
826
"""
827
827
return make_figure (args = locals (), constructor = go .Scatter3d )
@@ -902,7 +902,7 @@ def line_ternary(
902
902
) -> go .Figure :
903
903
"""
904
904
In a ternary line plot, each row of `data_frame` is represented as
905
- vertex of a polyline mark in ternary coordinates.
905
+ a vertex of a polyline mark in ternary coordinates.
906
906
"""
907
907
return make_figure (args = locals (), constructor = go .Scatterternary )
908
908
@@ -992,8 +992,8 @@ def line_polar(
992
992
height = None ,
993
993
) -> go .Figure :
994
994
"""
995
- In a polar line plot, each row of `data_frame` is represented as vertex
996
- of a polyline mark in polar coordinates.
995
+ In a polar line plot, each row of `data_frame` is represented as a
996
+ vertex of a polyline mark in polar coordinates.
997
997
"""
998
998
return make_figure (args = locals (), constructor = go .Scatterpolar )
999
999
@@ -1199,7 +1199,7 @@ def line_geo(
1199
1199
) -> go .Figure :
1200
1200
"""
1201
1201
In a geographic line plot, each row of `data_frame` is represented as
1202
- vertex of a polyline mark on a map.
1202
+ a vertex of a polyline mark on a map.
1203
1203
"""
1204
1204
return make_figure (
1205
1205
args = locals (),
@@ -1314,7 +1314,7 @@ def density_map(
1314
1314
) -> go .Figure :
1315
1315
"""
1316
1316
In a density map, each row of `data_frame` contributes to the intensity of
1317
- the color of the region around the corresponding point on the map
1317
+ the color of the region around the corresponding point on the map.
1318
1318
"""
1319
1319
return make_figure (
1320
1320
args = locals (), constructor = go .Densitymap , trace_patch = dict (radius = radius )
@@ -1350,7 +1350,7 @@ def line_map(
1350
1350
) -> go .Figure :
1351
1351
"""
1352
1352
In a line map, each row of `data_frame` is represented as
1353
- vertex of a polyline mark on the map.
1353
+ a vertex of a polyline mark on the map.
1354
1354
"""
1355
1355
return make_figure (args = locals (), constructor = go .Scattermap )
1356
1356
@@ -1497,7 +1497,7 @@ def line_mapbox(
1497
1497
) -> go .Figure :
1498
1498
"""
1499
1499
In a Mapbox line plot, each row of `data_frame` is represented as
1500
- vertex of a polyline mark on a Mapbox map.
1500
+ a vertex of a polyline mark on a Mapbox map.
1501
1501
"""
1502
1502
return make_figure (args = locals (), constructor = go .Scattermapbox )
1503
1503
0 commit comments