Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Commit

Permalink
fix pyspark.rdd.RDD.histogram's buckets argument (#549)
Browse files Browse the repository at this point in the history
Closes #548
  • Loading branch information
tpvasconcelos authored Jul 2, 2021
1 parent 33cab26 commit 4a0499c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/3/pyspark/rdd.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class RDD(Generic[T]):
def sum(self: RDD[NumberOrArray]) -> NumberOrArray: ...
def count(self) -> int: ...
def stats(self: RDD[NumberOrArray]) -> StatCounter: ...
def histogram(self, buckets: List[T]) -> Tuple[List[T], List[int]]: ...
def histogram(self, buckets: Union[int, List[T], Tuple[T, ...]]) -> Tuple[List[T], List[int]]: ...
def mean(self: RDD[NumberOrArray]) -> NumberOrArray: ...
def variance(self: RDD[NumberOrArray]) -> NumberOrArray: ...
def stdev(self: RDD[NumberOrArray]) -> NumberOrArray: ...
Expand Down

0 comments on commit 4a0499c

Please sign in to comment.