Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pandas/core/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def random_state(state=None):
If receives `None`, returns np.random.
If receives anything else, raises an informative ValueError.

..versionchanged:: 1.1.0
.. versionchanged:: 1.1.0

array-like and BitGenerator (for NumPy>=1.18) object now passed to
np.random.RandomState() as seed
Expand Down
2 changes: 1 addition & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -8212,7 +8212,7 @@ def cov(
Delta degrees of freedom. The divisor used in calculations
is ``N - ddof``, where ``N`` represents the number of elements.

versionadded:: 1.1.0
.. versionadded:: 1.1.0

Returns
-------
Expand Down
2 changes: 1 addition & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -4809,7 +4809,7 @@ def sample(
random number generator
If np.random.RandomState, use as numpy RandomState object.

..versionchanged:: 1.1.0
.. versionchanged:: 1.1.0

array-like and BitGenerator (for NumPy>=1.17) object now passed to
np.random.RandomState() as seed
Expand Down
2 changes: 1 addition & 1 deletion pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -2342,7 +2342,7 @@ def cov(
Delta degrees of freedom. The divisor used in calculations
is ``N - ddof``, where ``N`` represents the number of elements.

versionadded:: 1.1.0
.. versionadded:: 1.1.0

Returns
-------
Expand Down
4 changes: 2 additions & 2 deletions pandas/plotting/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def hist_series(
legend : bool, default False
Whether to show the legend.

..versionadded:: 1.1.0
.. versionadded:: 1.1.0

**kwargs
To be passed to the actual plotting function.
Expand Down Expand Up @@ -179,7 +179,7 @@ def hist_frame(
legend : bool, default False
Whether to show the legend.

..versionadded:: 1.1.0
.. versionadded:: 1.1.0

**kwargs
All other plotting keyword arguments to be passed to
Expand Down