Skip to content

Commit

Permalink
version 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjoern Koneswarakantha authored and cran-robot committed Dec 18, 2018
0 parents commit 3072c56
Show file tree
Hide file tree
Showing 34 changed files with 2,537 additions and 0 deletions.
34 changes: 34 additions & 0 deletions DESCRIPTION
@@ -0,0 +1,34 @@
Package: easyalluvial
Title: Generate Alluvial Plots with a Single Line of Code
Version: 0.1.7
Authors@R: person( "Bjoern", "Koneswarakantha", role = c("aut","cre"), email = "datistics@gmail.com", comment = c(ORCID = " 0000-0003-4585-7799") )
URL: https://github.com/erblast/easyalluvial
Description: Alluvial plots are similar to sankey diagrams and visualise categorical data
over multiple dimensions as flows. (Rosvall M, Bergstrom CT (2010) Mapping Change in
Large Networks. PLoS ONE 5(1): e8694. <doi:10.1371/journal.pone.0008694>
Their graphical grammar however is a bit more complex then that of a regular x/y
plots. The 'ggalluvial' package made a great job of translating that grammar into
'ggplot2' syntax and gives you many option to tweak the appearance of an alluvial
plot, however there still remains a multi-layered complexity that makes it difficult
to use 'ggalluvial' for explorative data analysis. 'easyalluvial' provides a simple
interface to this package that allows you to produce a decent alluvial plot from any
dataframe in either long or wide format from a single line of code while also handling
continuous data. It is meant to allow a quick visualisation of entire dataframes
with a focus on different colouring options that can make alluvial plots a great
tool for data exploration.
License: CC0
Encoding: UTF-8
LazyData: true
Depends: R(>= 2.10)
Suggests: testthat, covr, ISLR, nycflights13
RoxygenNote: 6.1.1
Imports: purrr , tidyr , dplyr , forcats , ggalluvial , ggplot2 ,
RColorBrewer , recipes , rlang , stringr , magrittr , tibble
Language: en-US
NeedsCompilation: no
Packaged: 2018-12-10 00:19:39 UTC; erbla
Author: Bjoern Koneswarakantha [aut, cre] (<https://orcid.org/
0000-0003-4585-7799>)
Maintainer: Bjoern Koneswarakantha <datistics@gmail.com>
Repository: CRAN
Date/Publication: 2018-12-18 16:50:03 UTC
33 changes: 33 additions & 0 deletions MD5
@@ -0,0 +1,33 @@
826ce4b8ab6fa7b98dcc4021ffd3a66f *DESCRIPTION
9653783a7c88ac6fdc3fc62699ae10d3 *NAMESPACE
0b79aae32399ccfd191ca63d5e06589e *NEWS.md
6b9f77a08d0932591f173c0339649795 *R/alluvial_long.R
e356ed7d71c3b274fc608f7968d2085f *R/alluvial_wide.R
f07ed85f4859a424b70260d8c5094cc9 *R/data.R
9744414df0f8fbe84141356e6a63b52f *R/manip.R
3f9e59d757ce6d00e8a4ed004be948d8 *R/palette.R
7d870b93182de0e8ef48d3e8b4afcabd *R/plot_condensation.R
cb49bfe38901d49fce70a9bc983b5073 *README.md
20efe0a231dae1ee2ead48c4c29a35c2 *data/quarterly_flights.rda
cbc6538b6501fc26d39c449d8eddbb5f *inst/logo/logo.R
dd1deef1b02ec41d9e5840ac9fe01e4b *inst/logo/logo_easyalluvial.png
64f86ce8868c483015e907a70e0fec8a *man/alluvial_long.Rd
067d7cf185f23393bb73fd17f65618c7 *man/alluvial_wide.Rd
61224022d196929dae48c2ad71685d45 *man/figures/README-plot_long-1.png
4311da3757549dc425108abfecab31d8 *man/figures/README-wide_plot-1.png
72fbe5f23e630218c7b4bebb1fc94c63 *man/manip_bin_numerics.Rd
04b3dc28fac35ea0535ffcd67e2f811d *man/manip_factor_2_numeric.Rd
f12e62cc3a414f0bd260e170b0ae04f3 *man/palette_filter.Rd
f6fda596f1d6257b07f2349b036dcbe1 *man/palette_increase_length.Rd
89b65160fba64ab0e51452ba1557a840 *man/palette_plot_intensity.Rd
0574e85dde567612bcf5489e20b52e4c *man/palette_plot_rgp.Rd
4245b73926c197cf62b6fc8f12447b97 *man/palette_qualitative.Rd
6578916aa0822ccff7b13cd6bac5bb8a *man/pdf/easyalluvial_manual.pdf
b3a9a7dafe1821b26903ed13e94d3a30 *man/plot_condensation.Rd
dcd56512ef6bdb6e7196918315669eae *man/quarterly_flights.Rd
b65242a67edb29227eed889b1fe5667e *tests/testthat.R
3eee73af7449c9a3d2acec946fa9fb96 *tests/testthat/test_alluvial_long.R
fbb109adfc1cd9f4cf66827c1e48e8d4 *tests/testthat/test_alluvial_wide.R
2e29e9ea0a48bd83c195efbe68d7c638 *tests/testthat/test_manip.R
cc1d3954b32390235a5cb15c336c4436 *tests/testthat/test_palette.R
3bf2929a8daff27553bf5549fe666451 *tests/testthat/test_plot_condensation.R
42 changes: 42 additions & 0 deletions NAMESPACE
@@ -0,0 +1,42 @@
# Generated by roxygen2: do not edit by hand

export(alluvial_long)
export(alluvial_wide)
export(manip_bin_numerics)
export(manip_factor_2_numeric)
export(palette_filter)
export(palette_increase_length)
export(palette_plot_intensity)
export(palette_plot_rgp)
export(palette_qualitative)
export(plot_condensation)
import(dplyr)
import(forcats)
import(ggalluvial)
import(ggplot2)
import(purrr)
import(recipes)
importFrom(RColorBrewer,brewer.pal)
importFrom(RColorBrewer,brewer.pal.info)
importFrom(forcats,fct_relevel)
importFrom(forcats,fct_rev)
importFrom(ggalluvial,StatStratum)
importFrom(ggalluvial,geom_flow)
importFrom(ggalluvial,geom_stratum)
importFrom(ggalluvial,stat_stratum)
importFrom(grDevices,boxplot.stats)
importFrom(grDevices,col2rgb)
importFrom(grDevices,rgb)
importFrom(magrittr,"%>%")
importFrom(purrr,is_bare_numeric)
importFrom(purrr,is_null)
importFrom(rlang,UQ)
importFrom(rlang,quo_is_null)
importFrom(stats,var)
importFrom(stringr,str_detect)
importFrom(tibble,is_tibble)
importFrom(tidyr,complete)
importFrom(tidyr,gather)
importFrom(tidyr,spread)
importFrom(tidyr,unnest)
importFrom(utils,head)
3 changes: 3 additions & 0 deletions NEWS.md
@@ -0,0 +1,3 @@

# 20181118
CRAN submission

0 comments on commit 3072c56

Please sign in to comment.