@@ -565,7 +565,7 @@ def set_axis(self, labels, axis=0, inplace=None):
565
565
566
566
See Also
567
567
--------
568
- pandas. DataFrame.rename_axis : Alter the name of the index or columns.
568
+ DataFrame.rename_axis : Alter the name of the index or columns.
569
569
570
570
Examples
571
571
--------
@@ -1164,9 +1164,9 @@ def rename_axis(self, mapper=None, **kwargs):
1164
1164
1165
1165
See Also
1166
1166
--------
1167
- pandas. Series.rename : Alter Series index labels or name.
1168
- pandas. DataFrame.rename : Alter DataFrame index labels or name.
1169
- pandas. Index.rename : Set new names on index.
1167
+ Series.rename : Alter Series index labels or name.
1168
+ DataFrame.rename : Alter DataFrame index labels or name.
1169
+ Index.rename : Set new names on index.
1170
1170
1171
1171
Examples
1172
1172
--------
@@ -2042,8 +2042,8 @@ def _repr_latex_(self):
2042
2042
2043
2043
See Also
2044
2044
--------
2045
- pandas. read_excel
2046
- pandas. ExcelWriter
2045
+ read_excel
2046
+ ExcelWriter
2047
2047
2048
2048
Examples
2049
2049
--------
@@ -2161,7 +2161,7 @@ def to_json(self, path_or_buf=None, orient=None, date_format=None,
2161
2161
2162
2162
See Also
2163
2163
--------
2164
- pandas. read_json
2164
+ read_json
2165
2165
2166
2166
Examples
2167
2167
--------
@@ -2393,7 +2393,7 @@ def to_sql(self, name, con, schema=None, if_exists='fail', index=True,
2393
2393
2394
2394
See Also
2395
2395
--------
2396
- pandas. read_sql : Read a DataFrame from a table.
2396
+ read_sql : Read a DataFrame from a table.
2397
2397
2398
2398
Notes
2399
2399
-----
@@ -4216,7 +4216,7 @@ def filter(self, items=None, like=None, regex=None, axis=None):
4216
4216
4217
4217
See Also
4218
4218
--------
4219
- pandas. DataFrame.loc
4219
+ DataFrame.loc
4220
4220
4221
4221
Notes
4222
4222
-----
@@ -4275,7 +4275,7 @@ def head(self, n=5):
4275
4275
4276
4276
See Also
4277
4277
--------
4278
- pandas. DataFrame.tail: Returns the last `n` rows.
4278
+ DataFrame.tail: Returns the last `n` rows.
4279
4279
4280
4280
Examples
4281
4281
--------
@@ -4334,7 +4334,7 @@ def tail(self, n=5):
4334
4334
4335
4335
See Also
4336
4336
--------
4337
- pandas. DataFrame.head : The first `n` rows of the caller object.
4337
+ DataFrame.head : The first `n` rows of the caller object.
4338
4338
4339
4339
Examples
4340
4340
--------
@@ -4584,9 +4584,9 @@ def sample(self, n=None, frac=None, replace=False, weights=None,
4584
4584
4585
4585
See Also
4586
4586
--------
4587
- pandas. DataFrame.apply
4588
- pandas. DataFrame.applymap
4589
- pandas. Series.map
4587
+ DataFrame.apply
4588
+ DataFrame.applymap
4589
+ Series.map
4590
4590
""" )
4591
4591
4592
4592
@Appender (_shared_docs ['pipe' ] % _shared_doc_kwargs )
@@ -4899,7 +4899,7 @@ def as_matrix(self, columns=None):
4899
4899
4900
4900
See Also
4901
4901
--------
4902
- pandas. DataFrame.values
4902
+ DataFrame.values
4903
4903
"""
4904
4904
warnings .warn ("Method .as_matrix will be removed in a future version. "
4905
4905
"Use .values instead." , FutureWarning , stacklevel = 2 )
@@ -5305,9 +5305,9 @@ def astype(self, dtype, copy=True, errors='raise', **kwargs):
5305
5305
5306
5306
See Also
5307
5307
--------
5308
- pandas. to_datetime : Convert argument to datetime.
5309
- pandas. to_timedelta : Convert argument to timedelta.
5310
- pandas. to_numeric : Convert argument to a numeric type.
5308
+ to_datetime : Convert argument to datetime.
5309
+ to_timedelta : Convert argument to timedelta.
5310
+ to_numeric : Convert argument to a numeric type.
5311
5311
numpy.ndarray.astype : Cast a numpy array to a specified type.
5312
5312
"""
5313
5313
if is_dict_like (dtype ):
@@ -5527,9 +5527,9 @@ def convert_objects(self, convert_dates=True, convert_numeric=False,
5527
5527
5528
5528
See Also
5529
5529
--------
5530
- pandas. to_datetime : Convert argument to datetime.
5531
- pandas. to_timedelta : Convert argument to timedelta.
5532
- pandas. to_numeric : Convert argument to numeric type.
5530
+ to_datetime : Convert argument to datetime.
5531
+ to_timedelta : Convert argument to timedelta.
5532
+ to_numeric : Convert argument to numeric type.
5533
5533
5534
5534
Returns
5535
5535
-------
@@ -5561,9 +5561,9 @@ def infer_objects(self):
5561
5561
5562
5562
See Also
5563
5563
--------
5564
- pandas. to_datetime : Convert argument to datetime.
5565
- pandas. to_timedelta : Convert argument to timedelta.
5566
- pandas. to_numeric : Convert argument to numeric type.
5564
+ to_datetime : Convert argument to datetime.
5565
+ to_timedelta : Convert argument to timedelta.
5566
+ to_numeric : Convert argument to numeric type.
5567
5567
5568
5568
Returns
5569
5569
-------
@@ -9904,8 +9904,8 @@ def to_csv(self, path_or_buf=None, sep=",", na_rep='', float_format=None,
9904
9904
9905
9905
See Also
9906
9906
--------
9907
- pandas. read_csv : Load a CSV file into a DataFrame.
9908
- pandas. to_excel : Load an Excel file into a DataFrame.
9907
+ read_csv : Load a CSV file into a DataFrame.
9908
+ to_excel : Load an Excel file into a DataFrame.
9909
9909
9910
9910
Examples
9911
9911
--------
@@ -10101,8 +10101,8 @@ def _doc_parms(cls):
10101
10101
_all_see_also = """\
10102
10102
See Also
10103
10103
--------
10104
- pandas. Series.all : Return True if all elements are True.
10105
- pandas. DataFrame.any : Return True if one (or more) elements are True.
10104
+ Series.all : Return True if all elements are True.
10105
+ DataFrame.any : Return True if one (or more) elements are True.
10106
10106
"""
10107
10107
10108
10108
_cnum_doc = """
@@ -10128,7 +10128,7 @@ def _doc_parms(cls):
10128
10128
%(examples)s
10129
10129
See Also
10130
10130
--------
10131
- pandas. core.window.Expanding.%(accum_func_name)s : Similar functionality
10131
+ core.window.Expanding.%(accum_func_name)s : Similar functionality
10132
10132
but ignores ``NaN`` values.
10133
10133
%(name2)s.%(accum_func_name)s : Return the %(desc)s over
10134
10134
%(name2)s axis.
0 commit comments