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

Fix docstrings #1098

Merged
merged 8 commits into from
May 8, 2024
Prev Previous commit
Next Next commit
Small fix in docstrings for the explode parameter of the geom_pie() f…
…unction.
  • Loading branch information
ASmirnov-HORIS committed May 7, 2024
commit 8aca1a4e712d03e0e4fbd65215d4af1e0c2354d0
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 @@ -6597,7 +6597,7 @@ def geom_pie(mapping=None, *, data=None, stat=None, position=None, show_legend=N
- x : x-axis value.
- y : y-axis value.
- slice : values associated to pie sectors.
- explode : values to explode slices away from their center point, detaching it from the main pie. The optimal range for the values is between 0 and 1-`hole`.
- explode : values to explode slices away from their center point, detaching it from the main pie. Accept values between 0 and 1.
- size : pie diameter.
- fill : fill color. String in the following formats: RGB/RGBA (e.g. "rgb(0, 0, 255)"); HEX (e.g. "#0000FF"); color name (e.g. "red"); role name ("pen", "paper" or "brush").
- alpha : transparency level of the pie. Accept values between 0 and 1.
Expand Down