dance_tbl {matahari}R Documentation

Get the log as a tibble

Description

Get the log as a tibble

Usage

dance_tbl()

Value

Either a tibble::tibble() containing your logged history or NULL. if there is no log.

Examples

## Not run: 

library(knitr)

# Start recording
dance_start(value = TRUE)

# Execute some expressions
"Hello!"
4 + 4

# Stop recording
dance_stop()

# Access log of your session
dance_tbl()

# Display the log nicely
kable(dance_tbl()[3:4, 1:5])

## |expr   |value  |path |contents |selection |
## |:------|:------|:----|:--------|:---------|
## |Hello! |Hello! |NA   |NA       |NA        |
## |4 + 4  |8      |NA   |NA       |NA        |


## End(Not run)

[Package matahari version 0.1.3 Index]