ANOVA类型错误

时间:2018-06-26 16:32:46

标签: r error-handling regression linear-regression anova

我尝试对我的数据进行ANOVA。我想检查两个因素之间是否存在相互作用。我使用代码:

anova_3<- anova(lm(response ~ Fac_A * Fac_B, data,  type=3))

但是我遇到了错误

  

lm.fit(x, y, offset = offset, singular.ok = singular.ok, ...)中:    多余的参数“类型”将被忽略

无论我尝试哪种类型,总是得到相同的答案和相同的错误。我的数据中没有NA

1 个答案:

答案 0 :(得分:1)

请尝试以下操作:

@Test
void testAssignUserRoles() {
    UserInfo user = new UserInfo();
    user.setId(Long.valueOf(1));
    user.setFirstname("Test");
    user.setLastname("Test2");
    user.setActiveuser(true);
    user.setEmailid("tet@test.com");
    user.setRolename("test");
    user.setUserpassword("test");
    Mockito.when(repo.save(user)).thenReturn(Mono.just(user));
    webClient.post().uri("/assignRoles").contentType(MediaType.APPLICATION_JSON)
        .body(BodyInserters.fromObject(user)).exchange().expectStatus().isCreated();
    Mockito.verify(repo, times(1)).save(user);
}

我发现此链接非常有用: https://stat.ethz.ch/pipermail/r-help/2012-June/315986.html

希望有帮助。