@@ -9969,8 +9969,9 @@ def ne(self, other, axis: Axis = "columns", level=None) -> DataFrame:
99699969
99709970 def le(self, other, axis: Axis = "columns", level=None) -> DataFrame:
99719971 """
9972- Get Greater than or equal to of dataframe and other,
9973- element-wise (binary operator `le`).
9972+ Binary operator `le`
9973+
9974+ Get Greater than or equal to of dataframe and other,element-wise.
99749975
99759976 Among flexible wrappers (`eq`, `ne`, `le`, `lt`, `ge`, `gt`) to comparison
99769977 operators.
@@ -10282,8 +10283,9 @@ def lt(self, other, axis: Axis = "columns", level=None) -> DataFrame:
1028210283
1028310284 def ge(self, other, axis: Axis = "columns", level=None) -> DataFrame:
1028410285 """
10285- Get Greater than or equal to of dataframe and other,
10286- element-wise (binary operator `ge`).
10286+ Binary operator `ge`
10287+
10288+ Get Greater than or equal to of dataframe and other,element-wise.
1028710289
1028810290 Among flexible wrappers (`eq`, `ne`, `le`, `lt`, `ge`, `gt`) to comparison
1028910291 operators.
@@ -11196,8 +11198,9 @@ def rsub(
1119611198 self, other, axis: Axis = "columns", level=None, fill_value=None
1119711199 ) -> DataFrame:
1119811200 """
11199- Get Subtraction of dataframe and other,
11200- element-wise (binary operator `rsub`).
11201+ Binary operator `rsub`
11202+
11203+ Get Subtraction of dataframe and other,element-wise.
1120111204
1120211205 Equivalent to ``other - dataframe``, but with support to substitute a fill_value
1120311206 for missing data in one of the inputs. With reverse version, `sub`.
@@ -11396,7 +11399,9 @@ def mul(
1139611399 self, other, axis: Axis = "columns", level=None, fill_value=None
1139711400 ) -> DataFrame:
1139811401 """
11399- Get Multiplication of dataframe and other,element-wise (binary operator `mul`).
11402+ Binary operator `mul`
11403+
11404+ Get Multiplication of dataframe and other,element-wise.
1140011405
1140111406 Equivalent to ``dataframe * other``, but with support to substitute a fill_value
1140211407 for missing data in one of the inputs. With reverse version, `rmul`.
@@ -11597,8 +11602,9 @@ def rmul(
1159711602 self, other, axis: Axis = "columns", level=None, fill_value=None
1159811603 ) -> DataFrame:
1159911604 """
11600- Get Multiplication of dataframe and other,
11601- element-wise (binary operator `rmul`).
11605+ Binary operator `rmul`
11606+
11607+ Get Multiplication of dataframe and other,element-wise.
1160211608
1160311609 Equivalent to ``other * dataframe``, but with support to substitute a fill_value
1160411610 for missing data in one of the inputs. With reverse version, `mul`.
@@ -11797,8 +11803,9 @@ def truediv(
1179711803 self, other, axis: Axis = "columns", level=None, fill_value=None
1179811804 ) -> DataFrame:
1179911805 """
11800- Get Floating division of dataframe and other,
11801- element-wise (binary operator `truediv`).
11806+ Binary operator `truediv`
11807+
11808+ Get Floating division of dataframe and other,element-wise.
1180211809
1180311810 Equivalent to ``dataframe / other``, but with support to substitute a fill_value
1180411811 for missing data in one of the inputs. With reverse version, `rtruediv`.
@@ -12000,8 +12007,9 @@ def rtruediv(
1200012007 self, other, axis: Axis = "columns", level=None, fill_value=None
1200112008 ) -> DataFrame:
1200212009 """
12003- Get Floating division of dataframe and other,
12004- element-wise (binary operator `rtruediv`).
12010+ Binary operator `rtruediv`
12011+
12012+ Get Floating division of dataframe and other,element-wise.
1200512013
1200612014 Equivalent to ``other / dataframe``, but with support to substitute a fill_value
1200712015 for missing data in one of the inputs. With reverse version, `truediv`.
@@ -12202,8 +12210,9 @@ def floordiv(
1220212210 self, other, axis: Axis = "columns", level=None, fill_value=None
1220312211 ) -> DataFrame:
1220412212 """
12205- Get Integer division of dataframe and other,
12206- element-wise (binary operator `floordiv`).
12213+ Binary operator `floordiv`
12214+
12215+ Get Integer division of dataframe and other,element-wise.
1220712216
1220812217 Equivalent to ``dataframe // other``,
1220912218 but with support to substitute a fill_value
@@ -12403,8 +12412,9 @@ def rfloordiv(
1240312412 self, other, axis: Axis = "columns", level=None, fill_value=None
1240412413 ) -> DataFrame:
1240512414 """
12406- Get Integer division of dataframe and other,
12407- element-wise (binary operator `rfloordiv`).
12415+ Binary operator `rfloordiv`
12416+
12417+ Get Integer division of dataframe and other,element-wise.
1240812418
1240912419 Equivalent to ``other // dataframe``,
1241012420 but with support to substitute a fill_value
@@ -13002,8 +13012,9 @@ def pow(
1300213012 self, other, axis: Axis = "columns", level=None, fill_value=None
1300313013 ) -> DataFrame:
1300413014 """
13005- Get Exponential power of dataframe and other,
13006- element-wise (binary operator `pow`).
13015+ Binary operator `pow`.
13016+
13017+ Get Exponential power of dataframe and other,element-wise.
1300713018
1300813019 Equivalent to ``dataframe ** other``,
1300913020 but with support to substitute a fill_value
@@ -13203,8 +13214,9 @@ def rpow(
1320313214 self, other, axis: Axis = "columns", level=None, fill_value=None
1320413215 ) -> DataFrame:
1320513216 """
13206- Get Exponential power of dataframe and other,
13207- element-wise (binary operator `rpow`).
13217+ Binary operator `rpow`
13218+
13219+ Get Exponential power of dataframe and other,element-wise.
1320813220
1320913221 Equivalent to ``other ** dataframe``,
1321013222 but with support to substitute a fill_value
0 commit comments