Closed juba closed 5 months ago
The kwargs alternative syntax allows to define a plot with keyword arguments instead of a dict:
kwargs
op( grid = True, color = {"legend": True}, marks = [ Plot.dot(data, {"x": "x", "y": "y", "fill": "type"}) ], )
I'm not sure this syntax is very useful, and it tends to make some of the code less readable. Maybe it could be removed ?
Syntax has been deprecated with the new "format" API.
The
kwargs
alternative syntax allows to define a plot with keyword arguments instead of a dict:I'm not sure this syntax is very useful, and it tends to make some of the code less readable. Maybe it could be removed ?