-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC: fix various typos in plotting documentation #51176
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -214,7 +214,7 @@ def radviz( | |
|
||
Returns | ||
------- | ||
class:`matplotlib.axes.Axes` | ||
:class:`matplotlib.axes.Axes` | ||
|
||
See Also | ||
-------- | ||
|
@@ -274,12 +274,13 @@ def andrews_curves( | |
|
||
Andrews curves have the functional form: | ||
|
||
f(t) = x_1/sqrt(2) + x_2 sin(t) + x_3 cos(t) + | ||
x_4 sin(2t) + x_5 cos(2t) + ... | ||
.. math:: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you show a screen shot how this renders? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the documentation is hosted here: https://5500-partev-pandas-0g9uwimmduf.ws-us85.gitpod.io/doc/build/html/index.html |
||
f(t) = \\frac{x_1}{\\sqrt{2}} + x_2 \\sin(t) + x_3 \\cos(t) + | ||
x_4 \\sin(2t) + x_5 \\cos(2t) + \\cdots | ||
|
||
Where x coefficients correspond to the values of each dimension and t is | ||
linearly spaced between -pi and +pi. Each row of frame then corresponds to | ||
a single curve. | ||
Where :math:`x` coefficients correspond to the values of each dimension | ||
and :math:`t` is linearly spaced between :math:`-\\pi` and :math:`+\\pi`. | ||
Each row of frame then corresponds to a single curve. | ||
|
||
Parameters | ||
---------- | ||
|
@@ -302,7 +303,7 @@ def andrews_curves( | |
|
||
Returns | ||
------- | ||
class:`matplotlip.axis.Axes` | ||
:class:`matplotlib.axes.Axes` | ||
|
||
Examples | ||
-------- | ||
|
@@ -369,8 +370,8 @@ def bootstrap_plot( | |
|
||
See Also | ||
-------- | ||
DataFrame.plot : Basic plotting for DataFrame objects. | ||
Series.plot : Basic plotting for Series objects. | ||
pandas.DataFrame.plot : Basic plotting for DataFrame objects. | ||
pandas.Series.plot : Basic plotting for Series objects. | ||
|
||
Examples | ||
-------- | ||
|
@@ -434,7 +435,7 @@ def parallel_coordinates( | |
|
||
Returns | ||
------- | ||
matplotlib.axis.Axes | ||
matplotlib.axes.Axes | ||
|
||
Examples | ||
-------- | ||
|
@@ -485,7 +486,7 @@ def lag_plot(series: Series, lag: int = 1, ax: Axes | None = None, **kwds) -> Ax | |
|
||
Returns | ||
------- | ||
matplotlib.axis.Axes | ||
matplotlib.axes.Axes | ||
|
||
Examples | ||
-------- | ||
|
@@ -529,7 +530,7 @@ def autocorrelation_plot(series: Series, ax: Axes | None = None, **kwargs) -> Ax | |
|
||
Returns | ||
------- | ||
matplotlib.axis.Axes | ||
matplotlib.axes.Axes | ||
|
||
Examples | ||
-------- | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This renders properly? https://pandas.pydata.org/docs/dev/reference/api/pandas.DataFrame.boxplot.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there are two different boxplot functions apparently. The one you linked to renders correctly. There is another one in "plotting" folder. That one is not rendering correctly: https://pandas.pydata.org/docs/dev/reference/api/pandas.plotting.boxplot.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah nice catch, thx