xtable оставил только

По умолчанию xtable является \begin{center}, Я хотел бы сделать это: \begin{left} а также \end{left} также.

Код:

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

Желаемый результат:

\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}

1 ответ

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

Так latex.environments = "left" это решение.

Другие вопросы по тегам