0

在一个Sweave用Rstudio写的文件中knitr,由于R代码行长,在下一行自动拆分,报错。我的代码中有问题的行如下所示是第 6 行有人如何继续?我认为只是需要一个小标志,但我没有在网上找到答案。

\begin{tabular}{@{}lr@{}} \toprule
Caracteristics & n, \% \\ \midrule
sexe (male) & \Sexpr{round(((prop.table(table(sexe)))[1]),2)*100} \%\\ 
Mean age at surgery (years) & \Sexpr{round(mean(agediag),1)} $\pm$        \Sexpr{round(sd(agediag),1)}\\
Main onset clinical sign & \\
\hspace{0.5cm} Motor deficit and dysphasia & \Sexpr{table(signeclinrevel)[1]}\\,  \Sexpr{formatPercent(prop.table(table(signeclinrevel))[1])}\\
\hspace{0.5cm} Seizure &   \\
\hspace{0.5cm} Cognitive disorders & \\
\hspace{0.5cm} Others (intracranial hypertension, eyesight troubles…) & \\
4

1 回答 1

0

答案是报告工具包中的函数 formatPercent 在 Latex 表中不起作用。相反,这项工作:

    \hspace{0.5cm} Motor deficit and dysphasia & \Sexpr{table(signeclinrevel)[1]}, (\Sexpr{round((prop.table(table(signeclinrevel))[1]*100),1)} \%)\\
于 2013-10-08T13:47:42.053 回答