Skip to content

Commit

Permalink
doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mdancho84 committed Oct 18, 2023
1 parent f9407f7 commit 3d7dbf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pytimetk/utils/parallel_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def parallel_apply(data : pd.core.groupby.generic.DataFrameGroupBy, func : Calla
result = grouped.apply(lambda df: df['B'].sum())
result
result = tk.parallel_apply(grouped, lambda df: df['B'].sum(), show_progress=True)
result = tk.parallel_apply(grouped, lambda df: df['B'].sum(), show_progress=True, threads=2)
result
```
Expand Down

0 comments on commit 3d7dbf6

Please sign in to comment.