組み込み行列の場合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
ですか?