显示 sweave 的错误

发布于 2024-09-07 19:25:50 字数 203 浏览 5 评论 0原文

我正在使用 Sweave 编写一些 R 笔记,并希望显示常见错误。例如,

<<echo=TRUE, eval=TRUE>>=
x = 5
#Case matters!
x*X
@

但是在 sweaving 时,由于 R 错误,文档将无法编译。有没有办法让 sweave 编译并显示(格式良好的)错误?

I'm writing some R notes with Sweave and would like to show common errors. For example,

<<echo=TRUE, eval=TRUE>>=
x = 5
#Case matters!
x*X
@

However when sweaving, the document won't compile due to the R error. Is there any way to make sweave compile and show the (nicely formated) error?

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

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

发布评论

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

评论(3

灼痛 2024-09-14 19:25:50

对于“下一代 Sweave”knitr 来说,这不是问题”,如果我可以这么说的话。它默认显示错误和警告,这在 Sweave 中是很困难或不可能的,此外还有大量其他不错的功能(例如语法着色、PGF 集成和绘图动画,对于初学者来说)。它也得到积极的开发和维护。

Sweave 代码必须使用同一包提供的函数 Sweave2knitr 转换一次。

This is a non-issue with knitr, the "next generation Sweave", if I may say so. It displays errors and warnings by default, which was difficult or impossible in Sweave, along with a plethora of other nice features (like syntax coloring, PGF integration and plot animation, for starters). It is developed and maintained actively, too.

Sweave code must be converted once using the function Sweave2knitr provided by the same package.

旧故 2024-09-14 19:25:50

正如 Shane 建议的那样,使用

<<echo=TRUE,eval=FALSE>> 

会出错但您想要显示的代码,然后再次使用

<<echo=FALSE,eval=TRUE,results=verbatim>> 

but 将相同的代码包装在 try 中。

这里有一个例子:
http://tolstoy.newcastle.edu.au/R/help /05/09/11690.html

As Shane suggests, use

<<echo=TRUE,eval=FALSE>> 

for the code that will error, but you want to display, and then again with

<<echo=FALSE,eval=TRUE,results=verbatim>> 

but with the same code wrapped in a try.

There's an example here:
http://tolstoy.newcastle.edu.au/R/help/05/09/11690.html

雨后彩虹 2024-09-14 19:25:50

将错误包含在 try() 命令中。然后它会继续运行:

> {print(1); try(x*X); print(2)}
[1] 1
Error in try(x * X) : object 'X' not found
[1] 2

Wrap your error in a try() command. Then it will keep running:

> {print(1); try(x*X); print(2)}
[1] 1
Error in try(x * X) : object 'X' not found
[1] 2
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文