gpt4 book ai didi

r - 如何在Rmarkdown中 "box"输出 "summary()"

转载 作者:行者123 更新时间:2023-12-03 19:24:06 26 4
gpt4 key购买 nike

我看过这个帖子:
How to create R-markdown sections inside a R code chunk? With proper code display

其中一位响应者 Cedric 将 summary() 的输出装箱的方式给我留下了深刻的印象。 R中的命令。

enter image description here

我知道用户使用 Sweave 来创建如此出色的输出。
我很好奇是否有一种方法可以使用 Knit 以类似的方式输出到 PDF 文件。

谢谢!

最佳答案

Sweave 与 R Markdown 在这里没有什么特别之处。您可以从 Cedric's answer that you linked to 复制并粘贴 LaTeX 代码。成文件 example.sty并使用以下 R Markdown 文件

---
title: "Stack Overflow Answer"
author: "duckmayr"
header-includes:
- \usepackage{example}
output: pdf_document
---


```{r boxed-summary, results='asis'}
for (i in 1:10) {
cat("\\section{Part:", i, "}")
cat("\\begin{lstlisting}")
print(summary(lm(data=mtcars, mtcars[,1]~ mtcars[,i])))
cat("\\end{lstlisting}")
cat(paste0("$\\\\alpha$ = ", mtcars[1,i]))
}
```

创造

enter image description here

或者,您可以将 LaTeX 放入您正在编辑的 R Markdown 文档中:
---
title: "Stack Overflow Answer"
author: "duckmayr"
header-includes:
- \usepackage{listings}
- \usepackage[usename,dvipsnames]{xcolor}
- \definecolor{mygreen}{rgb}{0,0.6,0}
- \definecolor{mygray}{rgb}{0.5,0.5,0.5}
- \definecolor{mymauve}{rgb}{0.58,0,0.82}
output: pdf_document
---

\lstset{ %
backgroundcolor=\color{white}, % choose the background color; you must add \usepackage{color} or \usepackage{xcolor}
basicstyle=\footnotesize\ttfamily, % the size of the fonts that are used for the
% code
breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace
breaklines=true, % sets automatic line breaking
captionpos=b, % sets the caption-position to bottom
commentstyle=\color{mygreen}, % comment style
deletekeywords={...}, % if you want to delete keywords from the given language
escapeinside={\%*}{*)}, % if you want to add LaTeX within your code
extendedchars=true, % lets you use non-ASCII characters; for 8-bits encodings only, does not work with UTF-8
frame=single, % adds a frame around the code
keepspaces=true, % keeps spaces in text, useful for keeping indentation of code (possibly needs columns=flexible)
keywordstyle=\color{blue}, % keyword style
language=R, % the language of the code
morekeywords={*,...}, % if you want to add more keywords to the set
numbers=left, % where to put the line-numbers; possible values are (none, left, right)
numbersep=5pt, % how far the line-numbers are from the code
numberstyle=\tiny\color{mygray}, % the style that is used for the line-numbers
rulecolor=\color{black}, % if not set, the frame-color may be changed on line-breaks within not-black text (e.g. comments (green here))
showspaces=false, % show spaces everywhere adding particular underscores; it overrides 'showstringspaces'
showstringspaces=false, % underline spaces within strings only
showtabs=false, % show tabs within strings adding particular underscores
stepnumber=2, % the step between two line-numbers. If it is 1, each line will be numbered
stringstyle=\color{mymauve}, % string literal style
tabsize=2, % sets default tabsize to 2 spaces
title=\lstname % show the filename of files included with \lstinputlisting; also try caption instead of title
}

```{r boxed-summary, results='asis'}
for (i in 1:10) {
cat("\\section{Part:", i, "}")
cat("\\begin{lstlisting}")
print(summary(lm(data=mtcars, mtcars[,1]~ mtcars[,i])))
cat("\\end{lstlisting}")
cat(paste0("$\\\\alpha$ = ", mtcars[1,i]))
}
```

这导致相同的输出。

归属说明

我想在这里再次强调,我没有想出创建盒装列表的 LaTeX 代码;塞德里克就是这样做的,如上所述。我只是在这里为 OP 演示如何在 R Markdown 文档中使用该代码,而不是通过 Sweave,如链接的答案中所示。

关于r - 如何在Rmarkdown中 "box"输出 "summary()",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58148146/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com