Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
777fe4c
pandas.plotting.bootstrap_plot doc updated
zangell44 Feb 12, 2019
a595cac
generic aggregate docstring updated
zangell44 Feb 12, 2019
507d21e
generic clip method docstring updated
zangell44 Feb 12, 2019
950f272
pandas.series.unique docstring update
zangell44 Feb 12, 2019
ba5120f
generic align docstring updated
zangell44 Feb 12, 2019
3cd359f
generic interpolate docstring updated
zangell44 Feb 12, 2019
0266006
generic asof docstric update
zangell44 Feb 12, 2019
86456dd
pandas.tseries.frequencies.to_offset return docstring fix
zangell44 Feb 12, 2019
a86736b
pandas.Index.reindex return docstring fix
zangell44 Feb 12, 2019
7d57782
indexes/base.py return docstring updates
zangell44 Feb 13, 2019
b47b886
indexes/multi.py return docstring updates
zangell44 Feb 13, 2019
63f0468
DataFrame.get_ftype_counts and DataFrame.get_values return docstring …
zangell44 Feb 13, 2019
8d4c6b4
pandas plotting area and boxplot method return docstring updates
zangell44 Feb 13, 2019
a15ec00
pandas.Panel set_value major_xs minor_xs methods return docstring upd…
zangell44 Feb 13, 2019
01a7b19
pandas.Categorical.array return docstring update
zangell44 Feb 13, 2019
998f649
pandas.unique return docstring update
zangell44 Feb 13, 2019
77bd88e
pandas.wide_to_long return docstring update
zangell44 Feb 13, 2019
b090af1
pandas.to_numeric return docstring update
zangell44 Feb 13, 2019
20adfce
pandas.core.window kurt return docstring updated
zangell44 Feb 13, 2019
0514c6f
pandas.io.formats.style.Styler.render return docstring fix
zangell44 Feb 13, 2019
0038a73
strftime return statement docstring fix
zangell44 Feb 13, 2019
021ede4
series.set_value return statement docstring fix
zangell44 Feb 13, 2019
f3a5248
DataFrame.set_value return statement docstring fix
zangell44 Feb 13, 2019
421bab7
pandas.core.Series.unique return docstring update, moved extended des…
zangell44 Feb 14, 2019
24b20a3
pandas.plotting._core.box_plot return docstring udpated, extended ret…
zangell44 Feb 14, 2019
ae87624
code_checks.sh script updated to include RT05 errors in docstring
zangell44 Feb 14, 2019
8b3d251
updated code check CI script to actually check for RT05 errors this t…
zangell44 Feb 14, 2019
6b3ed7b
pandas.plotting._core.box_plot docstring minor formatting edits
zangell44 Feb 14, 2019
dd242ea
pandas.core.Series.unique trailing period removed from Notes portion …
zangell44 Feb 14, 2019
83e120f
Merge remote-tracking branch 'upstream/master' into RT05_documentatio…
zangell44 Feb 14, 2019
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
indexes/base.py return docstring updates
  • Loading branch information
zangell44 committed Feb 13, 2019
commit 7d57782e080f80ab85e39d8477ba26d1c2774b23
8 changes: 4 additions & 4 deletions pandas/core/indexes/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1828,7 +1828,7 @@ def isna(self):
Returns
-------
numpy.ndarray
A boolean array of whether my values are NA
A boolean array of whether my values are NA.

See Also
--------
Expand Down Expand Up @@ -3098,7 +3098,7 @@ def reindex(self, target, method=None, level=None, limit=None,
Returns
-------
new_index : pd.Index
Resulting index
Resulting index.
indexer : np.ndarray or None
Indices of output values in original index.

Expand Down Expand Up @@ -4259,7 +4259,7 @@ def shift(self, periods=1, freq=None):
Returns
-------
pandas.Index
Shifted index
Shifted index.

See Also
--------
Expand Down Expand Up @@ -4422,7 +4422,7 @@ def set_value(self, arr, key, value):
in the target are marked by -1.
missing : ndarray of int
An indexer into the target of the values not found.
These correspond to the -1 in the indexer array
These correspond to the -1 in the indexer array.
"""

@Appender(_index_shared_docs['get_indexer_non_unique'] % _index_doc_kwargs)
Expand Down