0

我想知道是否有人知道如何将 ggtexttable 列向右对齐?

这是一个简短的例子:

library(ggpubr)

df <- data.frame(Order = c(1:3),
                 Name = c("Adam", "Ben", "Charlie"), 
                 Score = c(-.0041, 8.00, 9.123))
stable.p <- ggtexttable(df, rows = NULL, theme = ttheme("default"))

ggarrange(stable.p,  ncol = 1, nrow = 1, heights = c(1, 1))

带有负号和小数的第二列看起来很糟糕,我想证明右边的第二列是合理的,在此先感谢。

4

1 回答 1

0

利用包文档我能做的最好的事情就是强制所有列向右。它也可能取决于您的 YAML 设置。你渲染到什么输出?自从我使用以来,我可能得到了不同的结果html_document

前: 在此处输入图像描述

后:在此处输入图像描述

使用包指定表格主体样式,然后将其映射到ggtexttable()函数中。

tbody.style = tbody_style(hjust=1, x=0.9)

这是我的可重现解决方案

---
title: "Untitled"
author: "author"
date: "6/11/2021"
output: html_document
---

```{r setup}
library(ggpubr)

tbody.style = tbody_style(hjust=1, x=0.9)

df <- data.frame(Order = c(1:3),
                 Name = c("Adam", "Ben", "Charlie"), 
                 Score = c(-.0041, 8.00, 9.123))


ggtexttable(df, rows = NULL, 
            theme = ttheme(tbody.style = tbody.style))


```
于 2021-06-11T14:36:39.053 回答