Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个暗淡为 [72, 592] 的数据框,即 72 个观测值和 592 个变量。我想用数据集中的二进制变量 0 和 1(其中 0 代表疾病,1 代表控制)将观察值(行)1 到 37 指定为疾病,将第 38 到 72 行指定为控制。我还想分别为疾病和对照观察分配红色和蓝色。
我的目标是,当我以图形方式表示数据集时,属于疾病(或 0 类)的变量将显示为红色,而用于控制的变量将显示为蓝色。我怎样才能做到这一点?
cls = c(rep(0,37),rep(1,(72-37))) clr = c(rep("red",37),rep("blue",(72-37)))
When you plot, you can use color=clr, etc.
color=clr