Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More informative progress bars #66

Closed
bgreenwell opened this issue Mar 6, 2018 · 0 comments
Closed

More informative progress bars #66

bgreenwell opened this issue Mar 6, 2018 · 0 comments

Comments

@bgreenwell
Copy link
Owner

@bgreenwell bgreenwell commented Mar 6, 2018

Default to using progress for progress bars in the plyr backend to partial (which can provide estimated time to completion, etc.):

progress_progress <- function(...) {
  pb <- NULL
  list(
    init = function(x, ...) {
      pb <<- progress_bar$new(total = x, ...)
    },
	step = function() {
      pb$tick()
    },
	term = function() NULL
  )
}

bitmoji

@bgreenwell bgreenwell closed this Mar 9, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
1 participant
You can’t perform that action at this time.