Skip to content

Commit ef99169

Browse files
authored
skipna => skip_nulls (#134)
1 parent baa605d commit ef99169

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

spec/API_specification/dataframe_api/dataframe_object.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ def __iter__(self) -> NoReturn:
465465
"""
466466
raise NotImplementedError("'__iter__' is intentionally not implemented.")
467467

468-
def any(self, skipna: bool = True) -> DataFrame:
468+
def any(self, skip_nulls: bool = True) -> DataFrame:
469469
"""
470470
Reduction returns a 1-row DataFrame.
471471
@@ -476,7 +476,7 @@ def any(self, skipna: bool = True) -> DataFrame:
476476
"""
477477
...
478478

479-
def all(self, skipna: bool = True) -> DataFrame:
479+
def all(self, skip_nulls: bool = True) -> DataFrame:
480480
"""
481481
Reduction returns a 1-row DataFrame.
482482
@@ -515,49 +515,49 @@ def all_rowwise(self, skipna: bool = True) -> Column:
515515
"""
516516
...
517517

518-
def min(self, skipna: bool = True) -> DataFrame:
518+
def min(self, skip_nulls: bool = True) -> DataFrame:
519519
"""
520520
Reduction returns a 1-row DataFrame.
521521
"""
522522
...
523523

524-
def max(self, skipna: bool = True) -> DataFrame:
524+
def max(self, skip_nulls: bool = True) -> DataFrame:
525525
"""
526526
Reduction returns a 1-row DataFrame.
527527
"""
528528
...
529529

530-
def sum(self, skipna: bool = True) -> DataFrame:
530+
def sum(self, skip_nulls: bool = True) -> DataFrame:
531531
"""
532532
Reduction returns a 1-row DataFrame.
533533
"""
534534
...
535535

536-
def prod(self, skipna: bool = True) -> DataFrame:
536+
def prod(self, skip_nulls: bool = True) -> DataFrame:
537537
"""
538538
Reduction returns a 1-row DataFrame.
539539
"""
540540
...
541541

542-
def median(self, skipna: bool = True) -> DataFrame:
542+
def median(self, skip_nulls: bool = True) -> DataFrame:
543543
"""
544544
Reduction returns a 1-row DataFrame.
545545
"""
546546
...
547547

548-
def mean(self, skipna: bool = True) -> DataFrame:
548+
def mean(self, skip_nulls: bool = True) -> DataFrame:
549549
"""
550550
Reduction returns a 1-row DataFrame.
551551
"""
552552
...
553553

554-
def std(self, skipna: bool = True) -> DataFrame:
554+
def std(self, skip_nulls: bool = True) -> DataFrame:
555555
"""
556556
Reduction returns a 1-row DataFrame.
557557
"""
558558
...
559559

560-
def var(self, skipna: bool = True) -> DataFrame:
560+
def var(self, skip_nulls: bool = True) -> DataFrame:
561561
"""
562562
Reduction returns a 1-row DataFrame.
563563
"""

spec/API_specification/dataframe_api/groupby_object.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,34 @@
55

66

77
class GroupBy:
8-
def any(self, skipna: bool = True) -> "DataFrame":
8+
def any(self, skip_nulls: bool = True) -> "DataFrame":
99
...
1010

11-
def all(self, skipna: bool = True) -> "DataFrame":
11+
def all(self, skip_nulls: bool = True) -> "DataFrame":
1212
...
1313

14-
def min(self, skipna: bool = True) -> "DataFrame":
14+
def min(self, skip_nulls: bool = True) -> "DataFrame":
1515
...
1616

17-
def max(self, skipna: bool = True) -> "DataFrame":
17+
def max(self, skip_nulls: bool = True) -> "DataFrame":
1818
...
1919

20-
def sum(self, skipna: bool = True) -> "DataFrame":
20+
def sum(self, skip_nulls: bool = True) -> "DataFrame":
2121
...
2222

23-
def prod(self, skipna: bool = True) -> "DataFrame":
23+
def prod(self, skip_nulls: bool = True) -> "DataFrame":
2424
...
2525

26-
def median(self, skipna: bool = True) -> "DataFrame":
26+
def median(self, skip_nulls: bool = True) -> "DataFrame":
2727
...
2828

29-
def mean(self, skipna: bool = True) -> "DataFrame":
29+
def mean(self, skip_nulls: bool = True) -> "DataFrame":
3030
...
3131

32-
def std(self, skipna: bool = True) -> "DataFrame":
32+
def std(self, skip_nulls: bool = True) -> "DataFrame":
3333
...
3434

35-
def var(self, skipna: bool = True) -> "DataFrame":
35+
def var(self, skip_nulls: bool = True) -> "DataFrame":
3636
...
3737

3838
def size(self) -> "DataFrame":

0 commit comments

Comments
 (0)