It would be nice to have a progress bar like readr.
Here's the "show_progress" function from https://github.com/tidyverse/readr/blob/8d6a892b941948c96b6a5aa2ddb5b897492478e3/R/utils.R
show_progress <- function() {
!isTRUE(getOption("readr.show_progress")) || # user disables progress bar
!interactive() || # not an interactive session
!is.null(getOption("knitr.in.progress")) # Not actively knitting a document
}
It would be nice to have a progress bar like readr.
Here's the "show_progress" function from https://github.com/tidyverse/readr/blob/8d6a892b941948c96b6a5aa2ddb5b897492478e3/R/utils.R
show_progress <- function() {
!isTRUE(getOption("readr.show_progress")) || # user disables progress bar
!interactive() || # not an interactive session
!is.null(getOption("knitr.in.progress")) # Not actively knitting a document
}