我正在尝试手动订购我的交叉点,UpSetR
但我不知道是否可以这样做。order.by
只允许freq
ordegree
并且我看不到任何其他可以产生我想要的参数。
a <- list(one = c(1, 2, 3, 5,11,19),
two = c(1, 2, 4, 5, 11, 13),
three = c(1, 5, 6, 7, 11, 19),
four = c(1, 5, 6, 8, 13, 19))
upset(fromList(a), sets = c("one", "two", "three", "four"))
有谁知道这是否可能?谢谢。