You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When rownames_to_column() is called on the anova results, the text is replaced with numbers.
# make some data
expand.grid(
aaa=LETTERS[1:4],
bbb=LETTERS[1:4],
subject=1:10
) %>%
mutate_all(factor) %>%
mutate(measure= rnorm(n())) %>%
# ART ANOVA
art(measure~aaa*bbb+ Error(subject/bbb), .) %>%
anova() %>%
# get row names as a column
rownames_to_column()
There are numbers instead of text:
The text was updated successfully, but these errors were encountered:
When
rownames_to_column()
is called on the anova results, the text is replaced with numbers.There are numbers instead of text:
The text was updated successfully, but these errors were encountered: