Skip to content

Commit

Permalink
Update repeated_measures_d.R
Browse files Browse the repository at this point in the history
  • Loading branch information
mattansb committed Nov 6, 2023
1 parent 034955a commit ce37ae0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/repeated_measures_d.R
Original file line number Diff line number Diff line change
Expand Up @@ -274,11 +274,11 @@ rm_d <- repeated_measures_d
mod <- suppressWarnings(
stats::aov(y ~ condition + Error(id / condition),
data = data,
contrasts = list(condition = contr.treatment)
contrasts = list(condition = stats::contr.treatment)
)
)
m <- -unname(coef(mod[["id:condition"]]))
m_V <- unname(vcov(mod[["id:condition"]])[1])
m <- -unname(stats::coef(mod[["id:condition"]]))
m_V <- unname(stats::vcov(mod[["id:condition"]])[1])

pars <- parameters::model_parameters(mod)

Expand Down

0 comments on commit ce37ae0

Please sign in to comment.