Skip to content

Commit fc29e7b

Browse files
update: docstring
1 parent 31b530b commit fc29e7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11341,7 +11341,7 @@ def corr(
1134111341
1134211342
>>> # Use parallel computation for large DataFrames
1134311343
>>> large_df = pd.DataFrame(np.random.randn(10000, 100))
11344-
>>> corr_matrix = large_df.corr(parallel=True)
11344+
>>> corr_matrix = large_df.corr(use_parallel=True)
1134511345
""" # noqa: E501
1134611346
data = self._get_numeric_data() if numeric_only else self
1134711347
cols = data.columns

0 commit comments

Comments
 (0)