我有一个 .Rnw 文件,其中包含 R 代码块和 LaTeX 命令。到目前为止,我一直在 Rstudio 中开发和测试这段代码:点击“编译 PDF”获取一些输出文件和生成的 PDF 文件。
我现在想使用 commandArgs() 给我的 .Rnw 一个参数:一个 YAML 文件。该文件包含脚本所需的各种参数。
给出一些背景:
我的 .Rnw 脚本是一个管道脚本,它被设计为尽可能“通用”。
我的 .Rnw 脚本每次都需要一些参数 - 这些参数将在每个项目之间变化。为了提供这些参数,我目前(已经)使用 YAML 配置文件。这意味着我的 .Rnw 脚本做的第一件事就是导入 YAML 文件,然后它开始做事。
我的问题是:我可以同时使用“Rscript”、“commandArgs()”和 knitr 吗?我希望将一些 commandArgs() 添加到我的 .Rnw 脚本中,我将能够像这样运行所有内容(即在命令行上提供参数以提供 YAML 文件并编译 PDF):
Rscript script.Rnw params.yaml
但是,我收到有关“\”的错误消息,我强烈怀疑这与我使用 .Rnw 文件的事实有关(其中的第一件事是 LaTeX 命令)。然后我在其他帖子上看到了潜在的解决方案,例如:
Rscript -e "library(knitr); knit('script.Rnw')"
pdflatex script.tex
然而,这也失败了——我想这并不奇怪,因为我没有给它我的配置 YAML 文件。
我意识到我的设计可能存在缺陷:通过同时使用 commandAgrs() 和 knitr,我让事情变得非常复杂。我也意识到 knitr 可能并不是真正设计用于为用作管道的脚本制作报告(至少这是我的印象)。我想使用它的原因是,对于每个项目,都可以生成一个包含所有结果的快速 PDF。
我会很感激任何建议。这是我的代码示例:
\documentclass[12pt, a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\hypersetup{
colorlinks = true, %Colours links instead of ugly boxes
urlcolor = blue, %Colour for external hyperlinks
linkcolor = blue, %Colour of internal links
citecolor = blue %Colour of citations
}
\usepackage{caption}
\setlength{\parindent}{0pt}
\usepackage{authblk}
\usepackage[nomarkers, nolists]{endfloat} %Positions figures at the end of the document and add no list of names (requires that chunk have fig.cap option)
\usepackage{soul} % Allows underline lines to be broken (use \ul{} instead of \underline{})
\usepackage{helvet} %Set up Arial as font
\renewcommand{\familydefault}{\sfdefault}
\newcommand{\Rfunction}[1]{{\texttt{#1}}}
\newcommand{\Rpackage}[1]{{\textit{#1}}}
\title{\textbf{Report}}
\author{Author}
\date{\today}
\begin{document}
\maketitle
\begingroup
\hypersetup{linkcolor=black} % force independent link colours in table of contents
\tableofcontents
\endgroup
\begingroup
\hypersetup{linkcolor=black} % force independent link colours in list of figures
\listoffigures
\endgroup
\newpage
\section{Introduction}
This report blah blah blah
\newpage
\section{Results}
<<importing-lib, echo=FALSE, message=FALSE, cache=TRUE>>=
###################################################
# Obtain command-line YAML file and set directory #
###################################################
#!/usr/bin/env Rscript
args= commandArgs(trailingOnly=TRUE)
if (length(args) == 0) {
stop("this script requires a configuration file (.yaml) as input")
} else if (length(args) > 1) {
stop("this script requires only one input: a configuration file (.yaml)")
}
params <- yaml.load_file(args[1])
setwd(params$workdir)
if (dir.exists(file.path(params$workdir, "results")) == FALSE) {
dir.create(file.path(params$workdir, "results","edgeR"), recursive = TRUE)
dir.create(file.path(params$workdir, "results", "gsea", "input_files"), recursive = TRUE)
}
print("Hello!")
@
\end{document}