-
-
Notifications
You must be signed in to change notification settings - Fork 40
Closed
Description
display() doesn't like the traditional entry paired t.test ... I assume because of the $ in the variables.
sleep2 <- reshape(sleep, direction = "wide",
idvar = "ID", timevar = "group")
## Traditional interface
t.test(sleep2$extra.1, sleep2$extra.2, paired = TRUE) |>
model_parameters() |>
display()
## Formula interface
t.test(Pair(extra.1, extra.2) ~ 1, data = sleep2) |>
model_parameters() |>
display()
Formula interface is displayed fine in rendered document, but the traditional interface is not (columns are thrown off as is the parameter label).

Metadata
Metadata
Assignees
Labels
No labels