I want to show the numbers of the bars in the top annotation barplot in the Upset plot of ComplexHeatmap. However, I could only find parameters to rotate the name of the annotations, but not the annotations themselfes.
Taken from the ComplexHeatmap Documentation:
lt = list(set1 = c("a", "b", "c"),
set2 = c("b", "c", "d", "e"))
x = list_to_matrix(lt, universal_set = letters)
m2 = make_comb_mat(x)
m2 = m2[comb_degree(m2) > 0]
UpSet(m2, top_annotation = upset_top_annotation(m2, add_numbers = T))
Is there a way to not have the numbers rotated by 45 degrees?