我正在尝试使用 R、Latex 和knitr构建文档。当我尝试qplot
使用代码块包含绘图时,我收到一条错误消息,提示error object 'circuitdf' not found
. 我一直在努力让基本数据框在控制台窗口中工作,并且该qplot
窗口与我构建的数据框一起工作得很好。我想知道是否需要调用数据框来执行代码块?
\documentclass{article}
\begin{document}
This is a simple test document.
<<"circuit, eval=TRUE, echo=FALSE">>=
library(ggplot2)
qplot(current, voltage, data=circuitdf) + geom_smooth(method="lm", se=FALSE)
@
\end{document}