File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
spec/API_specification/dataframe_api Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -501,6 +501,34 @@ def all(self, skipna: bool = True) -> DataFrame:
501
501
If any of the DataFrame's columns is not boolean.
502
502
"""
503
503
...
504
+
505
+ def any_rowwise (self , skipna : bool = True ) -> Column :
506
+ """
507
+ Reduction returns a Column.
508
+
509
+ Differs from ``DataFrame.any`` and that the reduction happens
510
+ for each row, rather than for each column.
511
+
512
+ Raises
513
+ ------
514
+ ValueError
515
+ If any of the DataFrame's columns is not boolean.
516
+ """
517
+ ...
518
+
519
+ def all_rowwise (self , skipna : bool = True ) -> Column :
520
+ """
521
+ Reduction returns a Column.
522
+
523
+ Differs from ``DataFrame.all`` and that the reduction happens
524
+ for each row, rather than for each column.
525
+
526
+ Raises
527
+ ------
528
+ ValueError
529
+ If any of the DataFrame's columns is not boolean.
530
+ """
531
+ ...
504
532
505
533
def min (self , skipna : bool = True ) -> DataFrame :
506
534
"""
You can’t perform that action at this time.
0 commit comments