R中的治疗控制图

时间:2016-04-02 20:25:48

标签: r

假设我有两个数据向量

,我将如何在R中创建一个治疗/控制图

treatment <- c(1,2,3,3,5,6,7)

control <- c(4,5,6,6,8,9,10)

enter image description here

1 个答案:

答案 0 :(得分:3)

如果你使用格子包,你应该使用类似

的东西
library(lattice)
xyplot(data~which, make.groups(treatment, control), groups=which)

enter image description here