Skip to contents

[Stable]

Retrieve value from attribute footnote of object x.

[Deprecated]

This function is deprecated here. Please look at R/footnotes for the correct function.

Usage

footnotes(x)

footnotes(x)

Arguments

x

an object

Examples

x <- table(iris$Species)
footnotes(x) <- "Species are equally distributed"
footnotes(x)
#> [1] "Species are equally distributed"
if (FALSE) {
x <- table(iris$Species)
footnotes(x) <- "Species are equally distributed"
footnotes(x)
}