我想在 knitr LaTeX doc (.Rnw) 中打印几句话,但前提是存在某些数据。这些句子大多是文本,但有一些 R。
例子:
A chi-squared test of your observed sizes has a p-value of
\Sexpr{format(calculated_chisq$p.value,digits=3,scientific=F)}.
A p-value below 0.05 means you should be concerned that your
groups are broken. The lower the p-value, the more worried you
should be.
我尝试了一个带有 的块results='asis'
,但我认为该块被解释为 R。
我尝试过print()
使用paste()
R。它很难看,但它有效。但是,它会在其中添加似乎与 R 提示相对应的额外文本。
有没有很好的方法来做到这一点?