Regression tables in Markdown format (for flexible use in R Markdown v2)

后端 未结 6 1526
感动是毒
感动是毒 2020-12-13 00:49

The new version of R Markdown is based on pandoc, so you can easyly change the output format.

My Problem is to get markdown formated tables from e.g. regression mode

6条回答
  •  死守一世寂寞
    2020-12-13 01:47

    Another way to use sjPlot (great library for easy presentation of regression output) is to use the no.output feature:

         library(sjmisc)
         library(sjPlot)
         library(magrittr)
    
         lm(qsec ~ wt, mtcars) %>% 
           sjt.lm(no.output = TRUE, show.se = TRUE) %>% 
           return() %>% .[["knitr"]] %>% asis_output
    

提交回复
热议问题