@@ -308,7 +308,6 @@ def scatter(
308308 x : SlotValue = auto ,
309309 y : SlotValue | str = "value" ,
310310 color : SlotValue = auto ,
311- size : SlotValue = auto ,
312311 symbol : SlotValue = auto ,
313312 facet_col : SlotValue = auto ,
314313 facet_row : SlotValue = auto ,
@@ -322,7 +321,7 @@ def scatter(
322321 for dimension-vs-dimension plots (e.g., lat vs lon colored by value).
323322
324323 Dimensions fill slots in order:
325- x -> color -> size -> symbol -> facet_col -> facet_row -> animation_frame
324+ x -> color -> symbol -> facet_col -> facet_row -> animation_frame
326325
327326 Parameters
328327 ----------
@@ -336,16 +335,14 @@ def scatter(
336335 color
337336 Dimension for color grouping. Default: second dimension.
338337 Use "value" to color by DataArray values (useful with y=dimension).
339- size
340- Dimension for marker size. Default: third dimension.
341338 symbol
342- Dimension for marker symbol. Default: fourth dimension.
339+ Dimension for marker symbol. Default: third dimension.
343340 facet_col
344- Dimension for subplot columns. Default: fifth dimension.
341+ Dimension for subplot columns. Default: fourth dimension.
345342 facet_row
346- Dimension for subplot rows. Default: sixth dimension.
343+ Dimension for subplot rows. Default: fifth dimension.
347344 animation_frame
348- Dimension for animation. Default: seventh dimension.
345+ Dimension for animation. Default: sixth dimension.
349346 **px_kwargs
350347 Additional arguments passed to `plotly.express.scatter()`.
351348
@@ -362,7 +359,6 @@ def scatter(
362359 "scatter" ,
363360 x = x ,
364361 color = color ,
365- size = size ,
366362 symbol = symbol ,
367363 facet_col = facet_col ,
368364 facet_row = facet_row ,
@@ -386,7 +382,6 @@ def scatter(
386382 x = slots .get ("x" ),
387383 y = y_col ,
388384 color = color_col ,
389- size = slots .get ("size" ),
390385 symbol = slots .get ("symbol" ),
391386 facet_col = slots .get ("facet_col" ),
392387 facet_row = slots .get ("facet_row" ),
0 commit comments