@@ -1843,9 +1843,7 @@ def from_dict(
18431843 (default). Otherwise if the keys should be rows, pass 'index'.
18441844 If 'tight', assume a dict with keys ['index', 'columns', 'data',
18451845 'index_names', 'column_names'].
1846-
1847- .. versionadded:: 1.4.0
1848- 'tight' as an allowed value for the ``orient`` argument
1846+ 'tight' as an allowed value for the ``orient`` argument
18491847
18501848 dtype : dtype, default None
18511849 Data type to force after DataFrame construction, otherwise infer.
@@ -2084,9 +2082,7 @@ def to_dict(
20842082 - 'records' : list like
20852083 [{column -> value}, ... , {column -> value}]
20862084 - 'index' : dict like {index -> {column -> value}}
2087-
2088- .. versionadded:: 1.4.0
2089- 'tight' as an allowed value for the ``orient`` argument
2085+ 'tight' as an allowed value for the ``orient`` argument
20902086
20912087 into : class, default dict
20922088 The collections.abc.MutableMapping subclass used for all Mappings
@@ -2680,8 +2676,6 @@ def to_stata(
26802676 to labels as values. Labels for a single variable must be 32,000
26812677 characters or smaller.
26822678
2683- .. versionadded:: 1.4.0
2684-
26852679 Raises
26862680 ------
26872681 NotImplementedError
@@ -3088,8 +3082,6 @@ def to_orc(
30883082 """
30893083 Write a DataFrame to the Optimized Row Columnar (ORC) format.
30903084
3091- .. versionadded:: 1.5.0
3092-
30933085 Parameters
30943086 ----------
30953087 path : str, file-like object or None, default None
@@ -3463,8 +3455,6 @@ def to_xml(
34633455 """
34643456 Render a DataFrame to an XML document.
34653457
3466- .. versionadded:: 1.3.0
3467-
34683458 Parameters
34693459 ----------
34703460 path_or_buffer : str, path object, file-like object, or None, default None
@@ -6522,16 +6512,11 @@ def reset_index(
65226512 levels are named. If None then the index name is repeated.
65236513 allow_duplicates : bool, optional, default lib.no_default
65246514 Allow duplicate column labels to be created.
6525-
6526- .. versionadded:: 1.5.0
6527-
65286515 names : int, str or 1-dimensional list, default None
65296516 Using the given string, rename the DataFrame column which contains the
65306517 index data. If the DataFrame has a MultiIndex, this has to be a list
65316518 with length equal to the number of levels.
65326519
6533- .. versionadded:: 1.5.0
6534-
65356520 Returns
65366521 -------
65376522 DataFrame or None
@@ -7709,8 +7694,6 @@ def value_counts(
77097694 dropna : bool, default True
77107695 Do not include counts of rows that contain NA values.
77117696
7712- .. versionadded:: 1.3.0
7713-
77147697 Returns
77157698 -------
77167699 Series
@@ -9846,9 +9829,6 @@ def pivot(
98469829
98479830 sort : bool, default True
98489831 Specifies if the result should be sorted.
9849-
9850- .. versionadded:: 1.3.0
9851-
98529832 **kwargs : dict
98539833 Optional keyword arguments to pass to ``aggfunc``.
98549834
@@ -10202,9 +10182,6 @@ def explode(
1020210182 be str or tuple, and all specified columns their list-like data
1020310183 on same row of the frame must have matching length.
1020410184
10205- .. versionadded:: 1.3.0
10206- Multi-column explode
10207-
1020810185 ignore_index : bool, default False
1020910186 If True, the resulting index will be labeled 0, 1, …, n - 1.
1021010187
@@ -10820,8 +10797,6 @@ def apply(
1082010797 ``by_row=False`` (backward compatible).
1082110798 If False, the funcs will be passed the whole Series at once.
1082210799
10823- .. versionadded:: 2.1.0
10824-
1082510800 engine : decorator or {'python', 'numba'}, optional
1082610801 Choose the execution engine to use. If not provided the function
1082710802 will be executed by the regular Python interpreter.
@@ -11236,8 +11211,6 @@ def join(
1123611211 * "many_to_one" or "m:1": check if join keys are unique in right dataset.
1123711212 * "many_to_many" or "m:m": allowed, but does not result in checks.
1123811213
11239- .. versionadded:: 1.5.0
11240-
1124111214 Returns
1124211215 -------
1124311216 DataFrame
@@ -11626,8 +11599,6 @@ def corr(
1162611599 numeric_only : bool, default False
1162711600 Include only `float`, `int` or `boolean` data.
1162811601
11629- .. versionadded:: 1.5.0
11630-
1163111602 .. versionchanged:: 2.0.0
1163211603 The default value of ``numeric_only`` is now ``False``.
1163311604
@@ -11753,8 +11724,6 @@ def cov(
1175311724 numeric_only : bool, default False
1175411725 Include only `float`, `int` or `boolean` data.
1175511726
11756- .. versionadded:: 1.5.0
11757-
1175811727 .. versionchanged:: 2.0.0
1175911728 The default value of ``numeric_only`` is now ``False``.
1176011729
@@ -11893,8 +11862,6 @@ def corrwith(
1189311862 min_periods : int, optional
1189411863 Minimum number of observations needed to have a valid result.
1189511864
11896- .. versionadded:: 1.5.0
11897-
1189811865 .. versionchanged:: 2.0.0
1189911866 The default value of ``numeric_only`` is now ``False``.
1190011867
@@ -13414,8 +13381,6 @@ def idxmin(
1341413381 numeric_only : bool, default False
1341513382 Include only `float`, `int` or `boolean` data.
1341613383
13417- .. versionadded:: 1.5.0
13418-
1341913384 Returns
1342013385 -------
1342113386 Series
@@ -13519,8 +13484,6 @@ def idxmax(
1351913484 numeric_only : bool, default False
1352013485 Include only `float`, `int` or `boolean` data.
1352113486
13522- .. versionadded:: 1.5.0
13523-
1352413487 Returns
1352513488 -------
1352613489 Series
0 commit comments