The goal of ezviewr is to provide R users with convenient function to open their data objects with their preferable spreadsheet application window (e.g., Excel).
You can install the latest development version as follows:
if(!require(devtools)) {
install.packages("devtools")
}
devtools::install_github('jooyoungseo/ezviewr')
You can install the released version of ezviewr from CRAN with:
install.packages("ezviewr")
You can open any data.frame, tibble, matrix, or vector from an R session into your default-set spreadsheet application window as follows:
library(ezviewr)
data(airquality)
str(airquality)
# Use `view()` function to open your data object in your spreadsheet:
view(airquality)
# Then, when necessary, you can modify the opened data in the spreadsheet and save it as a new data.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.