Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/pyspark/pandas/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -1448,7 +1448,7 @@ def corr(self, method: str = "pearson", min_periods: Optional[int] = None) -> "D
1. Pearson, Kendall and Spearman correlation are currently computed using pairwise
complete observations.

2. The complexity of Spearman correlation is O(#row * #row), if the dataset is too
2. The complexity of Kendall correlation is O(#row * #row), if the dataset is too
large, sampling ahead of correlation computation is recommended.

Examples
Expand Down