README.md

ezviewr

License: GPL
v3 Travis build
status AppVeyor build
status Codecov test
coverage

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).

Installation

Development Version

You can install the latest development version as follows:

if(!require(devtools)) {
install.packages("devtools")
}

devtools::install_github('jooyoungseo/ezviewr')

Stable Version

You can install the released version of ezviewr from CRAN with:

install.packages("ezviewr")

Example

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.


jooyoungseo/ezviewr documentation built on Dec. 2, 2019, 9:52 p.m.