Skip to content

Instantly share code, notes, and snippets.

View lorenzwalthert's full-sized avatar

Lorenz Walthert lorenzwalthert

View GitHub Profile
@lorenzwalthert
lorenzwalthert / numbers2words.R
Created August 27, 2016 05:58 — forked from psychemedia/numbers2words.R
R function to convert numbers to words
#https://github.com/ateucher/useful_code/blob/master/R/numbers2words.r
numbers2words <- function(x){
## Function by John Fox found here:
## http://tolstoy.newcastle.edu.au/R/help/05/04/2715.html
## Tweaks by AJH to add commas and "and"
helper <- function(x){
digits <- rev(strsplit(as.character(x), "")[[1]])
nDigits <- length(digits)
if (nDigits == 1) as.vector(ones[digits])