Learn R Programming

nombre (version 0.2.0)

adverbial: Convert numbers to adverbial character vectors (once, twice, three times)

Description

Convert numbers to adverbial character vectors (once, twice, three times)

Usage

adverbial(x, thrice = getOption("nombre.thrice", FALSE), ...)

nom_adv(x, thrice = getOption("nombre.thrice", FALSE), ...)

nom_times(x, thrice = getOption("nombre.thrice", FALSE), ...)

Arguments

x

A numeric vector

thrice

A logical of length one. If TRUE, the adverbial of 3 will be "thrice". If FALSE, the adverbial of 3 will be "three times". Defaults to TRUE. Default can be changed by setting options("nombre.thrice").

...

Additional arguments passed to cardinal()

Value

A character vector of the same length as x

See Also

Other number names: cardinal(), collective(), denominator(), ordinal()

Examples

Run this code
# NOT RUN {
nom_adv(1:4)
nom_adv(1:4, thrice = TRUE)
# }

Run the code above in your browser using DataLab