是否可以使用针织钩或类似的东西来使编织者忽略一个'输出中的符号。问题是编织者在“'之后突出显示文本。作为一个字符串。
示例:
在这个例子中,我不希望颜色变为绿色!
我在R降价时使用knitr
选项comment=NA
。
答案 0 :(得分:1)
无法通过以下设置重现您的错误:
<some latex packages>
\begin{document}
<<h,echo=TRUE>>=
library(knitr)
x <- c(44.4, 45.9, 41.9, 53.3, 44.7, 44.1, 50.7, 45.2, 60.1)
y <- c( 2.6, 3.1, 2.5, 5.0, 3.6, 4.0, 5.2, 2.8, 3.8)
cor.test(x,y,method="pearson")
@
\end{document}
这是我的pdf输出
library(knitr)
x <- c(44.4, 45.9, 41.9, 53.3, 44.7, 44.1, 50.7, 45.2, 60.1)
y <- c( 2.6, 3.1, 2.5, 5.0, 3.6, 4.0, 5.2, 2.8, 3.8)
cor.test(x,y,method="pearson")
##
## Pearson’s product-moment correlation
##
## data: x and y
## t = 1.841, df = 7, p-value = 0.1082
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
## -0.1497 0.8956
## sample estimates:
## cor
## 0.5712