Вопрос

the default of xtable is \begin{center}. I would like to make it: \begin{left} and \end{left} as well.

Code:

library(xtable)
xtable(anova(lm(mpg~hp, data=mtcars)))

Desired outcome:

\begin{table}[ht]
\begin{left}
\begin{tabular}{lrrrrr}
  \hline
 & Df & Sum Sq & Mean Sq & F value & Pr($>$F) \\ 
  \hline
hp & 1 & 678.37 & 678.37 & 45.46 & 0.0000 \\ 
  Residuals & 30 & 447.67 & 14.92 &  &  \\ 
   \hline
\end{tabular}
\end{left}
\end{table}
Это было полезно?

Решение

print(xtable(anova(lm(mpg~hp, data=mtcars))) , booktabs=TRUE, caption.placement = "top",
    latex.environments = "left")

So latex.environments = "left" is the solution.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top