在r-markdown上工作时,我使用Format and Interpret Linear Mixed Models中的psycho
包来用结果表呈现.pdf
。
这些通常被分成两半,在我的文档中,这两个部分之间也很少。
示例(来自Psycho vignettes
)是否可以调整结果表的大小或以pdf友好的方式呈现它?
library(psycho)
library(lmerTest)
library(tidyverse)
df <- psycho::emotion %>%
select(Participant_ID,
Emotion_Condition,
Subjective_Valence,
Autobiographical_Link)
fit <- lmer(Autobiographical_Link ~ Emotion_Condition * Subjective_Valence + (1|Participant_ID), data=df)
summary(fit)
results <- analyze(fit, CI = 95)
summary(results) %>%
mutate(p = psycho::format_p(p))
HTML输出如下所示: