R 在 Latex 中使用 Knitr 和內聯程式碼塊
Knitr 是一個 R 包,它允許我們將 R 程式碼與 LaTeX 程式碼混合在一起。實現此目的的一種方法是內聯程式碼塊。這個 apporach 如下所示。
# r-noweb-file.Rnw
\documentclass{article}
\begin{document}
This is an Rnw file (R noweb). It contains a combination of LateX and R.
<<my-label>>=
print("This is an R Code Chunk")
x <- seq(1:10)
@
Above is an internal code chunk.
We can access data created in any code chunk inline with our LaTeX code like this.
The length of array x is \Sexpr{length(x)}.
\end{document}