我正在尝试使用request.get('http://localhost:8080/addUser')
函数(source code)在r中使用WRS包(而不是WRS2)运行强大的ANCOVA,尽管我的数据在清理后有几个缺失值。
如果我运行代码:
ancova()
我明白了:
dvGr1 <- c(1.8, NA, 2.4, 2.1, NA, 1.9, 3.0)
cvGr1 <- c(66.2, 49.4, 75.8, 60.8, 59.4, 58.3, NA)
dvGr2 <- c(NA, NA, 1.6, 2.2, 1.5, 1.8, 1.9)
cvGr2 <- c(NA, 74.3, 67.5, NA, 65.9, 57.3, 58.5)
ancova(cvGr1, dvGr1, cvGr2, dvGr2)
我理解这是因为代码正在查找不存在的值,但如果我使用Error in if (nuhat < 2) stop("The degrees of freedom must be greater than or equal to 2") :
missing value where TRUE/FALSE needed
,则会收到错误na.omit()
。
我的问题是,有没有办法在数据集中运行x1 and y1 have different lengths
缺少值?