R markdown中的PDF友好表格

时间:2018-12-14 16:05:12

标签: r 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输出如下所示:

enter image description here

0 个答案:

没有答案