表示内置矩阵ToothGrowth
:
tooth.1mg <- subset(ToothGrowth,dose==1)
tt <- t.test(len~supp,tooth.1mg,alternative="two.sided",
+ var.equal=FALSE,conf.level=0.95)
len~supp
如何运作?符号~
表示什么?
为什么我不能写supp~len
?
答案 0 :(得分:1)
This is what it does。另请参阅?t.test
。
应该清楚这一点以及为什么supp~len
无法工作的错误消息 - 公式的rhs
应该是一个分类变量,即factor
,精确两个类别(lhs
是每个类别中的值。)