This adds more footnotes.
Usage
add_footnotes(x) <- value
Arguments
- x
an object
- value
character vector
Examples
x <- table(iris$Species)
footnotes(x) <- "Species are equally distributed"
footnotes(x)
#> [1] "Species are equally distributed"
add_footnotes(x) <- "Add more footnotes"
footnotes(x)
#> [1] "Species are equally distributed" "Add more footnotes"