Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit a111621

Browse files
authored
correct doc for Series.lt (#770)
1 parent 829df36 commit a111621

1 file changed

Lines changed: 28 additions & 46 deletions

File tree

sdc/datatypes/hpat_pandas_series_functions.py

Lines changed: 28 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -2512,7 +2512,8 @@ def hpat_pandas_series_ne(self, other, level=None, fill_value=None, axis=0):
25122512
25132513
Limitations
25142514
-----------
2515-
- Parameters level, fill_value are currently unsupported by Intel Scalable Dataframe Compiler
2515+
* Parameter ``axis`` is supported only with default value ``0``.
2516+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
25162517
25172518
Examples
25182519
--------
@@ -2525,10 +2526,6 @@ def hpat_pandas_series_ne(self, other, level=None, fill_value=None, axis=0):
25252526
.. command-output:: python ./series/series_ne.py
25262527
:cwd: ../../../examples
25272528
2528-
.. note::
2529-
2530-
Parameter axis is currently unsupported by Intel Scalable Dataframe Compiler
2531-
25322529
Intel Scalable Dataframe Compiler Developer Guide
25332530
*************************************************
25342531
Pandas Series method :meth:`pandas.Series.ne` implementation.
@@ -2576,7 +2573,8 @@ def hpat_pandas_series_add(self, other, level=None, fill_value=None, axis=0):
25762573
25772574
Limitations
25782575
-----------
2579-
Parameters ``level``, ``fill_value`` and ``axis`` are unsupported.
2576+
* Parameter ``axis`` is supported only with default value ``0``.
2577+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``
25802578
25812579
Examples
25822580
--------
@@ -2639,7 +2637,8 @@ def hpat_pandas_series_sub(self, other, level=None, fill_value=None, axis=0):
26392637
26402638
Limitations
26412639
-----------
2642-
- Parameters level, fill_value are currently unsupported by Intel Scalable Dataframe Compiler
2640+
* Parameter ``axis`` is supported only with default value ``0``.
2641+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
26432642
26442643
Examples
26452644
--------
@@ -2652,10 +2651,6 @@ def hpat_pandas_series_sub(self, other, level=None, fill_value=None, axis=0):
26522651
.. command-output:: python ./series/series_sub.py
26532652
:cwd: ../../../examples
26542653
2655-
.. note::
2656-
2657-
Parameter axis is currently unsupported by Intel Scalable Dataframe Compiler
2658-
26592654
.. seealso::
26602655
26612656
:ref:`Series.rsub <pandas.Series.rsub>`
@@ -2986,7 +2981,8 @@ def hpat_pandas_series_mul(self, other, level=None, fill_value=None, axis=0):
29862981
29872982
Limitations
29882983
-----------
2989-
Parameters ``level``, ``fill_value`` and ``axis`` are currently unsupported.
2984+
* Parameter ``axis`` is supported only with default value ``0``.
2985+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
29902986
29912987
Examples
29922988
--------
@@ -3057,7 +3053,8 @@ def hpat_pandas_series_div(self, other, level=None, fill_value=None, axis=0):
30573053
30583054
Limitations
30593055
-----------
3060-
Parameters ``level``, ``fill_value`` and ``axis`` are unsupported.
3056+
* Parameter ``axis`` is supported only with default value ``0``.
3057+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
30613058
30623059
Examples
30633060
--------
@@ -3129,7 +3126,8 @@ def hpat_pandas_series_truediv(self, other, level=None, fill_value=None, axis=0)
31293126
31303127
Limitations
31313128
-----------
3132-
Parameters ``level``, ``fill_value`` and ``axis`` are currently unsupported.
3129+
* Parameter ``axis`` is c
3130+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
31333131
31343132
Examples
31353133
--------
@@ -3201,7 +3199,8 @@ def hpat_pandas_series_floordiv(self, other, level=None, fill_value=None, axis=0
32013199
32023200
Limitations
32033201
-----------
3204-
- Parameters level, fill_value are currently unsupported by Intel Scalable Dataframe Compiler
3202+
* Parameter ``axis`` is supported only with default value ``0``.
3203+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
32053204
32063205
Examples
32073206
--------
@@ -3214,10 +3213,6 @@ def hpat_pandas_series_floordiv(self, other, level=None, fill_value=None, axis=0
32143213
.. command-output:: python ./series/series_floordiv.py
32153214
:cwd: ../../../examples
32163215
3217-
.. note::
3218-
3219-
Parameter axis is currently unsupported by Intel Scalable Dataframe Compiler
3220-
32213216
.. seealso::
32223217
32233218
:ref:`Series.rfloordiv <pandas.Series.rfloordiv>`
@@ -3269,7 +3264,8 @@ def hpat_pandas_series_pow(self, other, level=None, fill_value=None, axis=0):
32693264
32703265
Limitations
32713266
-----------
3272-
- Parameters level, fill_value are currently unsupported by Intel Scalable Dataframe Compiler
3267+
* Parameter ``axis`` is supported only with default value ``0``.
3268+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
32733269
32743270
Examples
32753271
--------
@@ -3779,7 +3775,8 @@ def hpat_pandas_series_mod(self, other, level=None, fill_value=None, axis=0):
37793775
37803776
Limitations
37813777
-----------
3782-
- Parameters level, fill_value are currently unsupported by Intel Scalable Dataframe Compiler
3778+
* Parameter ``axis`` is supported only with default value ``0``.
3779+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
37833780
37843781
Examples
37853782
--------
@@ -3792,10 +3789,6 @@ def hpat_pandas_series_mod(self, other, level=None, fill_value=None, axis=0):
37923789
.. command-output:: python ./series/series_mod.py
37933790
:cwd: ../../../examples
37943791
3795-
.. note::
3796-
3797-
Parameter axis is currently unsupported by Intel Scalable Dataframe Compiler
3798-
37993792
Intel Scalable Dataframe Compiler Developer Guide
38003793
*************************************************
38013794
Pandas Series method :meth:`pandas.Series.mod` implementation.
@@ -3843,7 +3836,8 @@ def hpat_pandas_series_eq(self, other, level=None, fill_value=None, axis=0):
38433836
38443837
Limitations
38453838
-----------
3846-
- Parameters level, fill_value are currently unsupported by Intel Scalable Dataframe Compiler
3839+
* Parameter ``axis`` is supported only with default value ``0``.
3840+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
38473841
38483842
Examples
38493843
--------
@@ -3856,10 +3850,6 @@ def hpat_pandas_series_eq(self, other, level=None, fill_value=None, axis=0):
38563850
.. command-output:: python ./series/series_mod.py
38573851
:cwd: ../../../examples
38583852
3859-
.. note::
3860-
3861-
Parameter axis is currently unsupported by Intel Scalable Dataframe Compiler
3862-
38633853
Intel Scalable Dataframe Compiler Developer Guide
38643854
*************************************************
38653855
Pandas Series method :meth:`pandas.Series.eq` implementation.
@@ -3907,7 +3897,8 @@ def hpat_pandas_series_ge(self, other, level=None, fill_value=None, axis=0):
39073897
39083898
Limitations
39093899
-----------
3910-
- Parameters level, fill_value are currently unsupported by Intel Scalable Dataframe Compiler
3900+
* Parameter ``axis`` is supported only with default value ``0``.
3901+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
39113902
39123903
Examples
39133904
--------
@@ -4066,7 +4057,8 @@ def hpat_pandas_series_lt(self, other, level=None, fill_value=None, axis=0):
40664057
40674058
Limitations
40684059
-----------
4069-
- Parameters level, fill_value are currently unsupported by Intel Scalable Dataframe Compiler
4060+
* Parameter ``axis`` is supported only with default value ``0``.
4061+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
40704062
40714063
Examples
40724064
--------
@@ -4079,10 +4071,6 @@ def hpat_pandas_series_lt(self, other, level=None, fill_value=None, axis=0):
40794071
.. command-output:: python ./series/series_lt.py
40804072
:cwd: ../../../examples
40814073
4082-
.. note::
4083-
4084-
Parameter axis is currently unsupported by Intel Scalable Dataframe Compiler
4085-
40864074
Intel Scalable Dataframe Compiler Developer Guide
40874075
*************************************************
40884076
Pandas Series method :meth:`pandas.Series.lt` implementation.
@@ -4130,7 +4118,8 @@ def hpat_pandas_series_gt(self, other, level=None, fill_value=None, axis=0):
41304118
41314119
Limitations
41324120
-----------
4133-
- Parameters level, fill_value are currently unsupported by Intel Scalable Dataframe Compiler
4121+
* Parameter ``axis`` is supported only with default value ``0``.
4122+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
41344123
41354124
Examples
41364125
--------
@@ -4143,10 +4132,6 @@ def hpat_pandas_series_gt(self, other, level=None, fill_value=None, axis=0):
41434132
.. command-output:: python ./series/series_gt.py
41444133
:cwd: ../../../examples
41454134
4146-
.. note::
4147-
4148-
Parameter axis is currently unsupported by Intel Scalable Dataframe Compiler
4149-
41504135
Intel Scalable Dataframe Compiler Developer Guide
41514136
*************************************************
41524137
Pandas Series method :meth:`pandas.Series.gt` implementation.
@@ -4194,7 +4179,8 @@ def hpat_pandas_series_le(self, other, level=None, fill_value=None, axis=0):
41944179
41954180
Limitations
41964181
-----------
4197-
- Parameters level, fill_value are currently unsupported by Intel Scalable Dataframe Compiler
4182+
* Parameter ``axis`` is supported only with default value ``0``.
4183+
* Parameters ``level`` and ``fill_value`` are supported only with default value ``None``.
41984184
41994185
Examples
42004186
--------
@@ -4207,10 +4193,6 @@ def hpat_pandas_series_le(self, other, level=None, fill_value=None, axis=0):
42074193
.. command-output:: python ./series/series_le.py
42084194
:cwd: ../../../examples
42094195
4210-
.. note::
4211-
4212-
Parameter axis is currently unsupported by Intel Scalable Dataframe Compiler
4213-
42144196
Intel Scalable Dataframe Compiler Developer Guide
42154197
*************************************************
42164198
Pandas Series method :meth:`pandas.Series.le` implementation.

0 commit comments

Comments
 (0)