knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
library(rvisidata)
You need to have VisiData installed. Please follow the official installation instructions provided here.
To verify visidata is installed correctly, vd --version
should print out the installed version.
Use rvisidata
with the iris
dataset.
# This function calls an interactive VisiData session with the provided data frame. # The session will block any further code execution until it's exited. # The \dontrun{} is used here to prevent execution during vignette rendering and R CMD check. #' \dontrun{ vd(iris) #' }
Any changes to the data made in within VisiData is not stored or passed back to R
. You can use VisiData solely to display and explore the data.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.