@@ -1241,7 +1241,7 @@ def scatter_map(
1241
1241
height = None ,
1242
1242
) -> go .Figure :
1243
1243
"""
1244
- In a Map scatter plot , each row of `data_frame` is represented by a
1244
+ In a scatter map , each row of `data_frame` is represented by a
1245
1245
symbol mark on the map.
1246
1246
"""
1247
1247
return make_figure (args = locals (), constructor = go .Scattermap )
@@ -1278,7 +1278,7 @@ def choropleth_map(
1278
1278
height = None ,
1279
1279
) -> go .Figure :
1280
1280
"""
1281
- In a Map choropleth map, each row of `data_frame` is represented by a
1281
+ In a choropleth map, each row of `data_frame` is represented by a
1282
1282
colored region on the map.
1283
1283
"""
1284
1284
return make_figure (args = locals (), constructor = go .Choroplethmap )
@@ -1313,7 +1313,7 @@ def density_map(
1313
1313
height = None ,
1314
1314
) -> go .Figure :
1315
1315
"""
1316
- In a Map density map, each row of `data_frame` contributes to the intensity of
1316
+ In a density map, each row of `data_frame` contributes to the intensity of
1317
1317
the color of the region around the corresponding point on the map
1318
1318
"""
1319
1319
return make_figure (
@@ -1349,7 +1349,7 @@ def line_map(
1349
1349
height = None ,
1350
1350
) -> go .Figure :
1351
1351
"""
1352
- In a Map line plot , each row of `data_frame` is represented as
1352
+ In a line map , each row of `data_frame` is represented as
1353
1353
vertex of a polyline mark on the map.
1354
1354
"""
1355
1355
return make_figure (args = locals (), constructor = go .Scattermap )
0 commit comments