Description Usage Arguments Examples
Start logging your R console activity. If you're using RStudio the contents of your current editor tab will also be tracked. All logging takes place when R code is executed in the R console.
1 2 3 4 5 6 7 |
expr |
The R expressions typed into the R console will be logged unless
this is set to |
value |
Values that are computed on the R console will be logged unless
this is set to |
path |
The path to the file in focus on the RStudio editor will be logged
unless this is set to |
contents |
The file contents of the RStudio editor tab in focus will be
logged unless this is set to |
selection |
The text that is highlighted in the RStudio editor tab in
focus will be logged unless this is set to |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## Not run:
# Begin recording your R session.
dance_start()
# Each of the following expressions adds a row to the tibble that tracks
# the execution of your R code.
"Hello!"
4 + 4
x <- 7
x^2
rm(x)
x
# This stops recording your R session.
dance_stop()
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.