gpt4 book ai didi

r - 在gt表的不同列中选择不同类型的脚注标记

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

我想更改我的 gt 表中的脚注标记,以便在 wt 列中,我没有数字 2,而是一个星号 (*)。

我想保留脚注标记 1。

感谢任何帮助或指导

  library(gt)

# Create a sample gt table with custom footnote marks
my_table <- gt(
head(mtcars, 10))

my_table %>%
tab_footnote(
footnote = "Sequenced twice.",
locations = cells_body(columns=disp, rows=c(1,2))
) %>%
tab_footnote(
footnote = "Change mark",
locations = cells_body(columns=wt, rows=c(4,5))
)

enter image description here

最佳答案

我们可以使用opt_footnote_marks

library(gt)
my_table %>%
tab_footnote(
footnote = "Sequenced twice.",
locations = cells_body(columns=disp, rows=c(1,2))
) %>%
tab_footnote(
footnote = "Change mark",
locations = cells_body(columns=wt, rows=c(4,5))
) %>%
opt_footnote_marks(
marks = c("1", "*"))

-输出

enter image description here

关于r - 在gt表的不同列中选择不同类型的脚注标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74843878/

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