Skip to content

Commit c20d998

Browse files
update
1 parent 19c8ac0 commit c20d998

File tree

1 file changed

+33
-22
lines changed

1 file changed

+33
-22
lines changed

pandas/core/frame.py

Lines changed: 33 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9838,8 +9838,9 @@ def ne(self, other, axis: Axis = "columns", level=None) -> DataFrame:
98389838

98399839
def le(self, other, axis: Axis = "columns", level=None) -> DataFrame:
98409840
"""
9841-
Get Greater than or equal to of dataframe and other,
9842-
element-wise (binary operator `le`).
9841+
Binary operator `le`.
9842+
9843+
Get Greater than or equal to of dataframe and other,element-wise.
98439844

98449845
Among flexible wrappers (`eq`, `ne`, `le`, `lt`, `ge`, `gt`) to comparison
98459846
operators.
@@ -10151,8 +10152,9 @@ def lt(self, other, axis: Axis = "columns", level=None) -> DataFrame:
1015110152

1015210153
def ge(self, other, axis: Axis = "columns", level=None) -> DataFrame:
1015310154
"""
10154-
Get Greater than or equal to of dataframe and other,
10155-
element-wise (binary operator `ge`).
10155+
Binary operator `ge`.
10156+
10157+
Get Greater than or equal to of dataframe and other,element-wise.
1015610158

1015710159
Among flexible wrappers (`eq`, `ne`, `le`, `lt`, `ge`, `gt`) to comparison
1015810160
operators.
@@ -11065,8 +11067,9 @@ def rsub(
1106511067
self, other, axis: Axis = "columns", level=None, fill_value=None
1106611068
) -> DataFrame:
1106711069
"""
11068-
Get Subtraction of dataframe and other,
11069-
element-wise (binary operator `rsub`).
11070+
Binary operator `rsub`.
11071+
11072+
Get Subtraction of dataframe and other,element-wise.
1107011073

1107111074
Equivalent to ``other - dataframe``, but with support to substitute a fill_value
1107211075
for missing data in one of the inputs. With reverse version, `sub`.
@@ -11265,8 +11268,9 @@ def mul(
1126511268
self, other, axis: Axis = "columns", level=None, fill_value=None
1126611269
) -> DataFrame:
1126711270
"""
11268-
Get Multiplication of dataframe and other,
11269-
element-wise (binary operator `mul`).
11271+
Binary operator `mul`.
11272+
11273+
Get Multiplication of dataframe and other,element-wise.
1127011274

1127111275
Equivalent to ``dataframe * other``, but with support to substitute a fill_value
1127211276
for missing data in one of the inputs. With reverse version, `rmul`.
@@ -11467,8 +11471,9 @@ def rmul(
1146711471
self, other, axis: Axis = "columns", level=None, fill_value=None
1146811472
) -> DataFrame:
1146911473
"""
11470-
Get Multiplication of dataframe and other,
11471-
element-wise (binary operator `rmul`).
11474+
Binary operator `rmul`.
11475+
11476+
Get Multiplication of dataframe and other,element-wise.
1147211477

1147311478
Equivalent to ``other * dataframe``, but with support to substitute a fill_value
1147411479
for missing data in one of the inputs. With reverse version, `mul`.
@@ -11667,8 +11672,9 @@ def truediv(
1166711672
self, other, axis: Axis = "columns", level=None, fill_value=None
1166811673
) -> DataFrame:
1166911674
"""
11670-
Get Floating division of dataframe and other,
11671-
element-wise (binary operator `truediv`).
11675+
Binary operator `truediv`.
11676+
11677+
Get Floating division of dataframe and other,element-wise.
1167211678

1167311679
Equivalent to ``dataframe / other``, but with support to substitute a fill_value
1167411680
for missing data in one of the inputs. With reverse version, `rtruediv`.
@@ -11870,8 +11876,9 @@ def rtruediv(
1187011876
self, other, axis: Axis = "columns", level=None, fill_value=None
1187111877
) -> DataFrame:
1187211878
"""
11873-
Get Floating division of dataframe and other,
11874-
element-wise (binary operator `rtruediv`).
11879+
Binary operator `rtruediv`.
11880+
11881+
Get Floating division of dataframe and other,element-wise.
1187511882

1187611883
Equivalent to ``other / dataframe``, but with support to substitute a fill_value
1187711884
for missing data in one of the inputs. With reverse version, `truediv`.
@@ -12072,8 +12079,9 @@ def floordiv(
1207212079
self, other, axis: Axis = "columns", level=None, fill_value=None
1207312080
) -> DataFrame:
1207412081
"""
12075-
Get Integer division of dataframe and other,
12076-
element-wise (binary operator `floordiv`).
12082+
Binary operator `floordiv`.
12083+
12084+
Get Integer division of dataframe and other,element-wise.
1207712085

1207812086
Equivalent to ``dataframe // other``,
1207912087
but with support to substitute a fill_value
@@ -12273,8 +12281,9 @@ def rfloordiv(
1227312281
self, other, axis: Axis = "columns", level=None, fill_value=None
1227412282
) -> DataFrame:
1227512283
"""
12276-
Get Integer division of dataframe and other,
12277-
element-wise (binary operator `rfloordiv`).
12284+
Binary operator `rfloordiv`.
12285+
12286+
Get Integer division of dataframe and other,element-wise.
1227812287

1227912288
Equivalent to ``other // dataframe``,
1228012289
but with support to substitute a fill_value
@@ -12872,8 +12881,9 @@ def pow(
1287212881
self, other, axis: Axis = "columns", level=None, fill_value=None
1287312882
) -> DataFrame:
1287412883
"""
12875-
Get Exponential power of dataframe and other,
12876-
element-wise (binary operator `pow`).
12884+
Binary operator `pow`.
12885+
12886+
Get Exponential power of dataframe and other,element-wise.
1287712887

1287812888
Equivalent to ``dataframe ** other``,
1287912889
but with support to substitute a fill_value
@@ -13073,8 +13083,9 @@ def rpow(
1307313083
self, other, axis: Axis = "columns", level=None, fill_value=None
1307413084
) -> DataFrame:
1307513085
"""
13076-
Get Exponential power of dataframe and other,
13077-
element-wise (binary operator `rpow`).
13086+
Binary operator `rpow`.
13087+
13088+
Get Exponential power of dataframe and other,element-wise.
1307813089

1307913090
Equivalent to ``other ** dataframe``,
1308013091
but with support to substitute a fill_value

0 commit comments

Comments
 (0)