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
| options(repr.plot.width=6, repr.plot.height=6) upset( data, c("Action", "Comedy", "Drama", 'Romance'), name='genre', width_ratio=0.1, height_ratio=0.382, min_size=10, set_sizes=FALSE, base_annotations=list( "Intersection size" = intersection_size( text=list( hjust = -0.1, angle = 45 ), mapping = aes(fill = "bars_color") ) + scale_fill_manual( values = c("bars_color" = RColorBrewer::brewer.pal(3, 'Set1')[1]), guide = "none" ) + annotate( geom = 'text', x=Inf, y=Inf, label = paste('Total:', nrow(data)), vjust=1, hjust=1 ) + theme(panel.grid=element_blank()) ), sort_intersections_by = c("cardinality", "degree"), stripes=RColorBrewer::brewer.pal(9, 'Set1') )
|