gpt4 book ai didi

r - 如何在没有 hlines 的情况下打印 xtable

转载 作者:行者123 更新时间:2023-12-04 11:41:58 27 4
gpt4 key购买 nike

假设我有一个简单的 xtable,如下所示:

library(xtable)
x <- as.data.frame(matrix(1:9,3,3))
x <- xtable(x)

我怎样才能打印出只有列(即“&”)但周围没有任何内容的表格?我不想要 hlines 明确。

使用:

print(x,
only.contents=T)

返回表格前后的\hline。我也很高兴有一个解决方法,尽管我希望可以在 xtable 中以某种方式按预期进行设置。感谢您的任何提示。

最佳答案

可以将hline.after设置为NULL;见下文:

library(xtable)
x <- as.data.frame(matrix(1:9,3,3))
print(xtable(x),
only.contents=T)

#> % latex table generated in R 3.6.0 by xtable 1.8-4 package
#> % Wed Sep 18 11:54:58 2019
#> & V1 & V2 & V3 \\
#> \hline
#> 1 & 1 & 4 & 7 \\
#> 2 & 2 & 5 & 8 \\
#> 3 & 3 & 6 & 9 \\
#> \hline
print(xtable(x),
hline.after = NULL,
only.contents=T)

#> % latex table generated in R 3.6.0 by xtable 1.8-4 package
#> % Wed Sep 18 11:54:58 2019
#> & V1 & V2 & V3 \\
#> 1 & 1 & 4 & 7 \\
#> 2 & 2 & 5 & 8 \\
#> 3 & 3 & 6 & 9 \\
#>

您可以在 ?print.xtable 中阅读更多信息。

关于r - 如何在没有 hlines 的情况下打印 xtable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57996148/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com