You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I know that the function cli_progress_along is experimental. I ran the code below got a progress bar showing while updating me as my code ran until completion.
lapply_res <- lapply(cli_progress_along(x), fun)
I tried switch the lapply in favor for future_lapply/future_map but no progress bar is generated when testing out these functions
The text was updated successfully, but these errors were encountered:
Mark-AP
changed the title
Progress bar for furrr::future_map and future.apply::future_lapply functions
Progress bar for furrr::future_map and future.apply::future_lapply functions
Nov 25, 2023
I know that the function cli_progress_along is experimental. I ran the code below got a progress bar showing while updating me as my code ran until completion.
lapply_res <- lapply(cli_progress_along(x), fun)
I tried switch the lapply in favor for future_lapply/future_map but no progress bar is generated when testing out these functions
fl_res <- future_lapply(cli_progress_along(x), fun)
fm_res <- future_map(cli_progress_along(x), fun)
The text was updated successfully, but these errors were encountered: