resume | R Documentation |
This may reset the grouping of the tracked data if the grouping structure
has changed since the data frame was paused. If you try and resume tracking a
data frame with too many groups (as defined by options("dtrackr.max_supported_groupings"=XX)
)
then the resume will fail and the data frame will still be paused. This can
be overridden by specifying a value for the .maxgroups
parameter.
resume(.data, ...)
.data |
a tracked dataframe |
... |
Named arguments passed on to
|
the .data data frame with history graph tracking resumed
library(dplyr)
library(dtrackr)
iris %>% track() %>% pause() %>% resume() %>% history()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.