Guest User

Untitled

a guest
Dec 12th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. res <- prot1 %>% group_by(Protein.Name) %>%
  2. do(fitLM = lmer(log2Area ~ Condition + (Condition|Peptide.Sequence/precursor ), data = .),
  3. fitLM1 = lmer(log2Area ~ (Condition|Peptide.Sequence/precursor ), data = .))
  4.  
  5.  
  6. > res %>% mutate(anova = map2(fitLM1, fitLM, ~anova(.x,.y)))
  7. Error in mutate_impl(.data, dots) :
  8. Evaluation error: `.x` is not a vector (S4).
Add Comment
Please, Sign In to add comment