File tree 3 files changed +14
-3
lines changed
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -81,15 +81,12 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
81
81
-i " pandas.CategoricalIndex.ordered SA01" \
82
82
-i " pandas.DataFrame.__dataframe__ SA01" \
83
83
-i " pandas.DataFrame.__iter__ SA01" \
84
- -i " pandas.DataFrame.assign SA01" \
85
84
-i " pandas.DataFrame.at_time PR01" \
86
85
-i " pandas.DataFrame.axes SA01" \
87
- -i " pandas.DataFrame.bfill SA01" \
88
86
-i " pandas.DataFrame.columns SA01" \
89
87
-i " pandas.DataFrame.copy SA01" \
90
88
-i " pandas.DataFrame.droplevel SA01" \
91
89
-i " pandas.DataFrame.dtypes SA01" \
92
- -i " pandas.DataFrame.ffill SA01" \
93
90
-i " pandas.DataFrame.first_valid_index SA01" \
94
91
-i " pandas.DataFrame.get SA01" \
95
92
-i " pandas.DataFrame.hist RT03" \
Original file line number Diff line number Diff line change @@ -4915,6 +4915,10 @@ def assign(self, **kwargs) -> DataFrame:
4915
4915
A new DataFrame with the new columns in addition to
4916
4916
all the existing columns.
4917
4917
4918
+ See Also
4919
+ --------
4920
+ DataFrame.assign : Assign new columns to a DataFrame.
4921
+
4918
4922
Notes
4919
4923
-----
4920
4924
Assigning multiple columns within the same ``assign`` is possible.
Original file line number Diff line number Diff line change @@ -7089,6 +7089,11 @@ def ffill(
7089
7089
{klass} or None
7090
7090
Object with missing values filled or None if ``inplace=True``.
7091
7091
7092
+ See Also
7093
+ --------
7094
+ DataFrame.bfill : Fill NA/NaN values by using the next valid observation
7095
+ to fill the gap.
7096
+
7092
7097
Examples
7093
7098
--------
7094
7099
>>> df = pd.DataFrame(
@@ -7217,6 +7222,11 @@ def bfill(
7217
7222
{klass} or None
7218
7223
Object with missing values filled or None if ``inplace=True``.
7219
7224
7225
+ See Also
7226
+ --------
7227
+ DataFrame.ffill : Fill NA/NaN values by propagating the last valid
7228
+ observation to next valid.
7229
+
7220
7230
Examples
7221
7231
--------
7222
7232
For Series:
You can’t perform that action at this time.
0 commit comments