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
Small fix in docstring example of the geom_label() function.
  • Loading branch information
ASmirnov-HORIS committed Mar 26, 2024
commit 5214740b04deaac32f75e0eea50786ef18cb292f
2 changes: 1 addition & 1 deletion python-package/lets_plot/plot/geom.py
Original file line number Diff line number Diff line change
Expand Up @@ -6418,7 +6418,7 @@ def geom_label(mapping=None, *, data=None, stat=None, position=None, show_legend
ggplot(df, aes("x", "y")) + \\
geom_label(aes(label="label", hjust="hjust", vjust="vjust")) + \\
geom_point() + \\
xlim(-1.2, 1.2) + ylim(-1.2, 1.2)
xlim(-1.4, 1.4) + ylim(-1.2, 1.2)

|

Expand Down