Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes in docstrings #1063

Merged
merged 8 commits into from
Mar 26, 2024
Prev Previous commit
Next Next commit
Replace single quotation marks with standard ones.
  • Loading branch information
ASmirnov-HORIS committed Mar 26, 2024
commit 6ee4e78789508e4a32c97e898df98cc0e066db91
4 changes: 2 additions & 2 deletions python-package/lets_plot/plot/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ def layer(geom=None, stat=None, data=None, mapping=None, position=None, **kwargs
mapped to plot "aesthetics".
position : str or `FeatureSpec`
Position adjustment.
Either a position adjustment name: dodge’, ‘dodgev’, ‘jitter’, ‘nudge’, ‘jitterdodge’, ‘fill,
stack or identity, or the result of calling a position adjustment function (e.g., position_dodge() etc.).
Either a position adjustment name: 'dodge', 'dodgev', 'jitter', 'nudge', 'jitterdodge', 'fill',
'stack' or 'identity', or the result of calling a position adjustment function (e.g., position_dodge() etc.).
kwargs:
Other arguments passed on to layer. These are often aesthetics settings, used to set an aesthetic to a fixed
value, like color = "red", fill = "blue", size = 3 or shape = 21. They may also be parameters to the
Expand Down