【发布时间】:2021-11-13 07:19:14
【问题描述】:
如何让我的 gt 表在 R 中显示下标/上标?我希望同位素列中的数字显示为上标。
library(gt)
Isotope <- c("1H", "2H", "16O", "17O", "18O")
Abundance <- c(0.99985, 0.00015, 0.99757, 0.00038, 0.00205)
table <- as.data.frame(cbind(Isotope, Abundance))
table %>% gt()
【问题讨论】:
标签: r subscript superscript gt