我想知道是否有人知道如何将 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))
带有负号和小数的第二列看起来很糟糕,我想证明右边的第二列是合理的,在此先感谢。