Closed. This question is off-topic 。它目前不接受答案。
想改善这个问题吗? Update the question 所以它是堆栈溢出的 on-topic。
7年前关闭。
Improve this question
我在 OS X (10.8.3) 和 R (3.01) 上使用 Lyx (2.06)。我正在尝试将 knitr 文件导入 Lyx。 Lyx 能够找到 Rstudio,但 Rscript 在 setwd 命令上失败。 Lyx 的错误日志如下。任何帮助将非常感激。 (我在 Stackoverflow 上的第一篇文章。对于任何尴尬的格式,提前道歉。)
补充说明:
我在最初的帖子中可能不是很清楚。我有一个名为 stest.Rnw 的文件,其中包含以下 sweave 代码:
如果我尝试使用
从 bash 提示符和 Lyx 中运行时,此命令会失败。我注意到额外的双引号,但在运行脚本之前删除它们会得到相同的结果。 Rscript 似乎无法解析第四个参数,它只是一个目录。 R 永远不会解析 sweave,因为它在对 Lyx 传递给它的参数进行初始解析时失败了。至少这是我阅读错误消息的方式。
我希望这是有帮助的。
我不确定为什么 LyX 在导入文件时需要调用
想改善这个问题吗? Update the question 所以它是堆栈溢出的 on-topic。
7年前关闭。
Improve this question
我在 OS X (10.8.3) 和 R (3.01) 上使用 Lyx (2.06)。我正在尝试将 knitr 文件导入 Lyx。 Lyx 能够找到 Rstudio,但 Rscript 在 setwd 命令上失败。 Lyx 的错误日志如下。任何帮助将非常感激。 (我在 Stackoverflow 上的第一篇文章。对于任何尴尬的格式,提前道歉。)
10:43:17.114: Importing ~/Documents/Temp/stest.lyx...
10:43:17.122: Rscript --verbose --no-save --no-restore "/Applications/LyX.app/Contents/Resources/scripts /lyxknitr.R" "/Users/wms5f/Documents/Temp/""stest.Rnw" "/Users/wms5f/Documents/Temp/""stest.tex" "/Users/wms5f/Documents/Temp/"
10:43:17.124: running
10:43:17.125: '/Library/Frameworks/R.framework/Versions/3.0/Resources/bin/R --slave --no-restore --no-save --no-restore --file=/Applications/LyX.app/Contents/Resources/scripts/lyxknitr.R --args /Users/wms5f/Docu
10:43:17.126: ments/Temp/stest.Rnw /Users/wms5f/Documents/Temp/stest.tex'
10:43:17.126:
<.snip.>
10:43:18.424:
10:43:18.603: Package `sm', version 2.2-5: type help(sm) for summary information
10:43:20.609: Error in setwd(.cmdargs[4]) : missing value is invalid
10:43:20.610: Execution halted
Running: Rscript --verbose --no-save --no-restore "/Applications/LyX.app/Contents/Resources/scripts/lyxknitr.R" "/Users/wms5f/Documents/Temp/""stest.Rnw" "/Users/wms5f/Documents/Temp/""stest.tex" "/Users/wms5f/Documents/Temp/"
support/Systemcall.cpp (273): Systemcall: 'Rscript --verbose --no-save --no-restore "/Applications/LyX.app/Contents/Resources/scripts/lyxknitr.R" "/Users/wms5f/Documents/Temp/""stest.Rnw" "/Users/wms5f/Documents/Temp/""stest.tex" "/Users/wms5f/Documents/Temp/"' finished with exit code 1
Error: Cannot convert file
An error occurred while running:
Rscript --verbose --no-save --no-restore
"/Applications/LyX.app/Contents/Resources/scripts/lyxknitr.R"
"/Users/wms5f/Documents/Temp/""stest.Rnw"
"/Users/wms5f/Documents/Temp/""stest.tex" "/Users/wms5f/Documents/Temp/"
10:43:55.912: file not imported!
10:43:55.913: (buffer-import knitr)
10:44:04.097: (dialog-show prefs: ⌘,)
补充说明:
我在最初的帖子中可能不是很清楚。我有一个名为 stest.Rnw 的文件,其中包含以下 sweave 代码:
\documentclass{article}
\begin{document}
Test
\end{document}
如果我尝试使用
Import -> Rnw (knitr)
选项将此文件导入 Lyx 2.06,Lyx 会生成以下系统命令:Rscript --verbose --no-save --no-restore "/Applications/LyX.app/Contents/Resources/scripts/lyxknitr.R" "/Users/wms5f/Documents/Temp/""stest2.Rnw" "/Users/wms5f/Documents/Temp/""stest2.tex" "/Users/wms5f/Documents/Temp/"
从 bash 提示符和 Lyx 中运行时,此命令会失败。我注意到额外的双引号,但在运行脚本之前删除它们会得到相同的结果。 Rscript 似乎无法解析第四个参数,它只是一个目录。 R 永远不会解析 sweave,因为它在对 Lyx 传递给它的参数进行初始解析时失败了。至少这是我阅读错误消息的方式。
我希望这是有帮助的。
最佳答案
您试图将 Rnw 文件导入 LyX,但 LyX 2.0.6 尚不支持该文件。它计划在 LyX 2.1 中出现:http://www.lyx.org/trac/ticket/7838
当 LyX 2.1 发布时,您可以通过命令行导入:
tex2lyx -n -m knitr stest.Rnw
我不确定为什么 LyX 在导入文件时需要调用
Rscript
。您可能想向 LyX 提交错误报告。关于r - Lyx 调用 Rscript 时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17010979/
10-12 19:42