knitr::opts_chunk$set( collapse = TRUE, comment = "#>", echo = TRUE )
Nous aurons besoin des packages ggvenn
et UpSetR
:
ggvenn
et UpSetR
sont bien installéslibrary(ggvenn) library(UpSetR)
Nous allons également avoir besoin des données fruits :
data("fruits", package = "tidyViz")
Créons une liste d'objets :
flist <- with(fruits, list( Sucres = nom[Sucres > 20], Fibres = nom[Fibres > 2], Energie = nom[Energie > 50], Potassium = nom[Potassium > 100], Crus = nom[groupe == "crus"] ))
Et une matrice binaire
fbin <- with(fruits, data.frame( Sucres = Sucres > 20, Fibres = Fibres > 2, Energie = Energie > 50, Potassium = Potassium > 100, Crus = groupe == "crus" )) + 0
Compliqués à lire à partir de 4 ensembles :
ggvenn(flist, set_name_size = 5)
C'est une méthode de visualisation (récente !) alternative au diagramme de Venn.
Référence : Jake R Conway, Alexander Lex, Nils Gehlenborg, UpSetR: an R package for the visualization of intersecting sets and their properties, Bioinformatics, Volume 33, Issue 18, 15 September 2017, Pages 2938–2940, https://doi.org/10.1093/bioinformatics/btx364
{width=50%}
{width=50%}
upset(fbin)
upset(fromList(flist))
upset( fbin, nintersects = NA, order.by = "freq", main.bar.color = "steelblue", matrix.color = "limegreen", sets.bar.color = "tomato", point.size = 2)
Imaginez une situation dans laquelle vous pourriez avoir besoin de ce type de graphes.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.