-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME.Rmd
63 lines (40 loc) · 1.9 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# ggparallel
<!-- badges: start -->
[](https://CRAN.R-project.org/package=ggparallel)
[](https://r-pkg.org/pkg/ggparallel)
[)`-yellowgreen.svg)](https://github.com/heike/ggparallel/commits/main)
[](https://codecov.io/gh/heike/ggparallel)
[](https://github.com/heike/ggparallel/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->
The R package `ggparallel` implements and combines different types of parallel coordinate plots for categorical data: [hammock plots](http://www.schonlau.net/publication/03jsm_hammockplot_old.pdf), [parallel sets plots](https://datavizcatalogue.com/methods/parallel_sets.html), and [common angle plots](https://ieeexplore.ieee.org/document/6634157), as well as common angle plots with a hammock-like adjustment for line widths.
## Installation
The package is available on CRAN:
```
install.packages("ggparallel")
```
You can install the development version of ggparallel from [GitHub](https://github.com/) with:
```
# install.packages("remotes")
remotes::install_github("heike/ggparallel")
```
## Basic use case
```{r}
library(ggparallel)
data(mtcars)
ggparallel(list("gear", "cyl"), data=mtcars)
```
```{r}
ggparallel(list("gear", "cyl"), data=mtcars, method="hammock", ratio=0.25)
```