UpSetR: A More Scalable Alternative to Venn and Euler Diagrams for Visualizing Intersecting Sets
- CRAN: http://cran.r-project.org/web/packages/UpSetR/index.html
- GitHub: http://github.com/hms-dbmi/UpSetR
- Vignettes:
> library(UpSetR)
> movies <- read.csv(system.file("extdata", "movies.csv", package = "UpSetR"),
+ header = T, sep = ";")
バージョン: 1.2.3
関数名 | 概略 |
---|---|
elements |
Element query for queries paramter |
fromExpression |
Expression to UpSetR converters |
fromList |
List of named vectors to UpSetR converter |
histogram |
Histogram for custom plot |
intersects |
Intersection query for queries paramter |
scatter_plot |
Scatterplot for customplot |
upset |
UpSetR Plot |
elements
fromExpression
upset
> upset(movies, main.bar.color = "black", queries = list(list(query = intersects,
+ params = list("Drama"), active = T)), attribute.plots = list(gridrows = 50,
+ plots = list(list(plot = histogram, x = "ReleaseDate", queries = F), list(plot = histogram,
+ x = "AvgRating", queries = T)), ncols = 2))