numbers2words: Convert a numeric to its corresponding english character.

View source: R/functions.R

numbers2wordsR Documentation

Convert a numeric to its corresponding english character.

Description

Edited from the Github file by ateucher.

Usage

numbers2words(x)

Arguments

x

Numeric

Value

Character. 'spelled out' (in english) x.

Examples

x <- 10
numbers2words(10)

x <- c(x, 0, 20)
numbers2words(x)

x <- c(x, sample(1:10000,1))
numbers2words(x)

Acanthiza/envFunc documentation built on Dec. 14, 2024, 10:47 p.m.