R/adverbial.R
adverbial.Rd
Convert numbers to adverbial character vectors (once, twice, three times)
adverbial(x, thrice = FALSE, ...)
nom_adv(x, thrice = FALSE, ...)
nom_times(x, thrice = FALSE, ...)
A numeric vector
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 FALSE
.
Additional arguments passed to cardinal()
A character vector of the same length as x
Other number names:
cardinal()
,
collective()
,
denominator()
,
numerator()
,
ordinal()
,
ratio()
nom_adv(1:4)
#> [1] "once" "twice" "three times" "four times"
nom_adv(1:4, thrice = TRUE)
#> [1] "once" "twice" "thrice" "four times"