@@ -346,7 +346,7 @@ class DataFrame(NDFrame):
346346 1 4 5 6
347347 2 7 8 9
348348
349- See also
349+ See Also
350350 --------
351351 DataFrame.from_records : constructor from tuples, also record arrays
352352 DataFrame.from_dict : from dicts of Series, arrays, or dicts
@@ -1694,7 +1694,7 @@ def from_csv(cls, path, header=0, sep=',', index_col=0, parse_dates=True,
16941694 datetime format based on the first datetime string. If the format
16951695 can be inferred, there often will be a large parsing speed-up.
16961696
1697- See also
1697+ See Also
16981698 --------
16991699 pandas.read_csv
17001700
@@ -5592,7 +5592,7 @@ def pivot(self, index=None, columns=None, values=None):
55925592 -------
55935593 table : DataFrame
55945594
5595- See also
5595+ See Also
55965596 --------
55975597 DataFrame.pivot : pivot without aggregation that can handle
55985598 non-numeric data
@@ -5797,7 +5797,7 @@ def unstack(self, level=-1, fill_value=None):
57975797
57985798 .. versionadded:: 0.18.0
57995799
5800- See also
5800+ See Also
58015801 --------
58025802 DataFrame.pivot : Pivot a table based on column values.
58035803 DataFrame.stack : Pivot a level of the column labels (inverse operation
@@ -5867,7 +5867,7 @@ def unstack(self, level=-1, fill_value=None):
58675867 col_level : int or string, optional
58685868 If columns are a MultiIndex then use this level to melt.
58695869
5870- See also
5870+ See Also
58715871 --------
58725872 %(other)s
58735873 pivot_table
@@ -6108,7 +6108,7 @@ def _gotitem(self,
61086108 3 NaN
61096109 dtype: float64
61106110
6111- See also
6111+ See Also
61126112 --------
61136113 DataFrame.apply : Perform any type of operations.
61146114 DataFrame.transform : Perform transformation type operations.
@@ -6242,7 +6242,7 @@ def apply(self, func, axis=0, broadcast=None, raw=False, reduce=None,
62426242 side-effects, as they will take effect twice for the first
62436243 column/row.
62446244
6245- See also
6245+ See Also
62466246 --------
62476247 DataFrame.applymap: For elementwise operations
62486248 DataFrame.aggregate: only perform aggregating type operations
@@ -6351,7 +6351,7 @@ def applymap(self, func):
63516351 DataFrame
63526352 Transformed DataFrame.
63536353
6354- See also
6354+ See Also
63556355 --------
63566356 DataFrame.apply : Apply a function along input axis of DataFrame
63576357
@@ -6434,7 +6434,7 @@ def append(self, other, ignore_index=False,
64346434 those rows to a list and then concatenate the list with the original
64356435 DataFrame all at once.
64366436
6437- See also
6437+ See Also
64386438 --------
64396439 pandas.concat : General function to concatenate DataFrame, Series
64406440 or Panel objects
0 commit comments