我正在尝试使用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}