https://github.com/jooyoungseo/ezviewr
View Tidy R Data in Preferable Spreadsheet
https://github.com/jooyoungseo/ezviewr
Last synced: 3 months ago
JSON representation
View Tidy R Data in Preferable Spreadsheet
- Host: GitHub
- URL: https://github.com/jooyoungseo/ezviewr
- Owner: jooyoungseo
- License: gpl-3.0
- Created: 2018-11-19T20:59:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-02T19:41:25.000Z (over 5 years ago)
- Last Synced: 2024-12-31T10:52:49.047Z (5 months ago)
- Language: R
- Homepage:
- Size: 63.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE.md
Awesome Lists containing this project
README
---
output: github_document
---```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# ezviewr
[](http://www.gnu.org/licenses/gpl-3.0)
[](https://travis-ci.org/jooyoungseo/ezviewr)
[](https://ci.appveyor.com/project/jooyoungseo/ezviewr)
[](https://codecov.io/gh/jooyoungseo/ezviewr?branch=master)
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:
```{r, eval=F}
if(!require(devtools)) {
install.packages("devtools")
}devtools::install_github('jooyoungseo/ezviewr')
```### Stable Version
You can install the released version of ezviewr from [CRAN](https://CRAN.R-project.org) with:
``` r
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:
```{r example, eval=F}
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.
```