Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MangoTheCat/tidyshiny
Interactively generate function calls for the tidyr package
https://github.com/MangoTheCat/tidyshiny
Last synced: 3 months ago
JSON representation
Interactively generate function calls for the tidyr package
- Host: GitHub
- URL: https://github.com/MangoTheCat/tidyshiny
- Owner: MangoTheCat
- License: other
- Created: 2016-02-04T15:34:54.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-31T14:33:50.000Z (over 8 years ago)
- Last Synced: 2024-05-21T02:53:42.501Z (6 months ago)
- Language: R
- Homepage:
- Size: 17.6 KB
- Stars: 68
- Watchers: 11
- Forks: 17
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - MangoTheCat/tidyshiny - Interactively generate function calls for the tidyr package (R)
README
# tidyshiny
> Interactively manipulate data with the `tidyr` package using this handy shiny gadget.
[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![Travis-CI Build Status](https://travis-ci.org/MangoTheCat/tidyshiny.svg?branch=master)](https://travis-ci.org/MangoTheCat/tidyshiny)
[![](http://www.r-pkg.org/badges/version/tidyshiny)](http://www.r-pkg.org/pkg/tidyshiny)
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/tidyshiny)](http://www.r-pkg.org/pkg/tidyshiny)
[![Coverage Status](https://codecov.io/github/MangoTheCat/tidyshiny/coverage.svg?branch=master)](https://codecov.io/github/MangoTheCat/tidyshiny?branch=master)## Installation
```r
library(devtools)
install_github("MangoTheCat/tidyshiny")
```## Usage
After launching the gadget with the `tidyData` function you will be able to set the `key` and `value` arguments and select columns. The gadget will preview the data that will be generated from the function call that is returned unless no columns are selected.
```r
library(tidyshiny)# Create a dataset object for the gadget to detect
testData <- airquality
tidyData()# Alternatively pass the data to the tidyData function call
tidyData(iris)
```This package has been setup to work with RStudio addin's and it will be available from the addins menu after installing the package.