Sweave 如何在 Latex 表环境中编写 R 代码?

发布于 2024-11-15 01:24:04 字数 100 浏览 3 评论 0原文

我现在正在研究 Sweave,当时我想使用 R 代码来描述 Latex 表中的一个变量。

原来Sweave无法读取这些R代码,输出的不是变量,而是我写的所有代码的文本形式

I am working on Sweave now, when I want to use R code to describe one variable in the latex table.

It turns out that Sweave cannot read these R codes, the output is not the variable, instead, the output is the text form of all the code I write

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野味少女 2024-11-22 01:24:04

您可能需要 \Sexpr{R 表达式};例如,这个 Sweave 片段

<<echo=FALSE>>=
z <- exp(pi)
@

\begin{tabular}{cc}
  a & \Sexpr{z} \\
  b & \Sexpr{round(z,3)}  \\
\end{tabular}

在 Sweaving 时会变成这样(Swelve?)

\begin{tabular}{cc}
  a & 23.1406926327793 \\
  b & 23.141  \\
\end{tabular}

You may want \Sexpr{R expression}; for example, this Sweave snippet

<<echo=FALSE>>=
z <- exp(pi)
@

\begin{tabular}{cc}
  a & \Sexpr{z} \\
  b & \Sexpr{round(z,3)}  \\
\end{tabular}

becomes this when Sweaved (Swoven?)

\begin{tabular}{cc}
  a & 23.1406926327793 \\
  b & 23.141  \\
\end{tabular}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文