https://github.com/ismailmuller/pivotr
Computing pivot tables
https://github.com/ismailmuller/pivotr
Last synced: 5 months ago
JSON representation
Computing pivot tables
- Host: GitHub
- URL: https://github.com/ismailmuller/pivotr
- Owner: ismailmuller
- License: other
- Created: 2020-04-11T19:40:43.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-03T17:48:34.000Z (almost 5 years ago)
- Last Synced: 2024-08-13T07:14:13.575Z (8 months ago)
- Language: R
- Homepage: https://ismailmuller.github.io/pivotr/
- Size: 220 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - ismailmuller/pivotr - Computing pivot tables (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# pivotr
[](https://codecov.io/gh/ismailmuller/pivotr?branch=master)
[](https://www.tidyverse.org/lifecycle/#experimental)
[](https://travis-ci.com/ismailmuller/pivotr)The goal of pivotr is to compute pivot tables by using the `tidyverse` syntax.
## Installation
You can install the development version from [GitHub](https://github.com/ismailmuller/pivotr) with:
```{r, message=FALSE, results='hide'}
# install.packages("devtools")
devtools::install_github("ismailmuller/pivotr")
```## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(pivotr)pvt(mtcars, cyl, am, N = n())
```