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.
我必须使用内置包在 R 中制作方差分析,我的数据看起来像这样:
dane=cbind(a=rnorm(10),b=rnorm(10),c=c(1,1,1,1,2,2,2,2,2,2))
a并且b是我想测试关于变量分配的组中均值相等假设的c变量。我的情况是最简单的情况t-test是不够的。
a
b
c
t-test
dane <- data.frame(dane) with(dane, aov(c(a[c==1],b[c==2]) ~ c))
或者,如果您打算同时测试两者a并b作为单独的 dvs:
with(dane, aov(a ~ c)) with(dane, aov(b ~ c))
I'm trying to mash a proof of concept together and have the following rough code snippet in there...
var jenkinsBuilds = [ {url:"htt