UpSetR 数据帧作为输入计数为零
UpSetR dataframe as input counts zeros
我想使用 upSetR 绘制一些患者的特征。每个特征都是 0 或 1。它们乘以一个 ID 以提供 upset 函数。它计算零并将零视为患者。我尝试使用以下但没有成功:
upSetList = list(A = df$col_1 , B = df$col_2)
您可能需要像这样转换为向量:
upSetList = list(A = as.vector(df$col_1) , B = as.vector(df$col_2))
我想使用 upSetR 绘制一些患者的特征。每个特征都是 0 或 1。它们乘以一个 ID 以提供 upset 函数。它计算零并将零视为患者。我尝试使用以下但没有成功:
upSetList = list(A = df$col_1 , B = df$col_2)
您可能需要像这样转换为向量:
upSetList = list(A = as.vector(df$col_1) , B = as.vector(df$col_2))