How can I delete specific footnote in the gtsummary table. For example I would to delete footnote 2 Wilcoxon rank sum test; Pearson's Chi-squared test
but leave the other one.
library(gtsummary)
library(dplyr)
trial[c("age", "grade", "trt")] %>%
tbl_summary(by = trt, missing = "no") %>%
add_p()