Control alignment of two side-by-side plots in knitr

后端 未结 2 1017
耶瑟儿~
耶瑟儿~ 2020-12-13 19:32

I cannot figure out how to arrange two side-by-side plots as explained in the knitr graphics manual page 2 (http://yihui.name/knitr/demo/graphics/). I use the following MWE

2条回答
  •  一向
    一向 (楼主)
    2020-12-13 20:37

    An alternative which worked for me: save the plots as files, then put the picture markdown on the same line (from here).

    ## Show images
    ![](file1.pdf) ![](file2.pdf)
    

    You can save ggplot plot objects with ggsave.

    Base plots are a bit more complicated, see for example here.

    I'm putting this answer here because it helped me. Whether it's better for you or not depends on your situation.

提交回复
热议问题