I'm using ComplexUpset in R and I would like to know if changing the labels of the intersection matrix is possible. I attempted using
upset(
themes=upset_modify_themes(
list(
'intersections_matrix'=scale_x_discrete("A"="label A", "B"="label B")))
and I got :
Scale for x is already present.
Adding another scale for x, which will replace the existing scale
How can I change the labels. The names of the columns isn't something I could describe in one word.
Use
labeller
argument of theComplexUpset::upset()
function: