month2num {metools}R Documentation

Transform month names to month numbers

Description

month2num transform month names to month numbers

Usage

month2num(date)

Arguments

date

a month names vector

Value

Return a month numbers.

Examples

v=c("jan","fev","mar","abr","mai","jun","jul","ago","set","out","nov","dez")
month2num(v)

v=data.frame('date'=c("janeiro","fevereiro",'março','abril'),'values'=c(18,27,10,48))
month2num(v$date)
#or
month2num(v[[1]])

#you can substitute column with function:
v$date = month2num(v$date)
v[[1]] = month2num(v[[1]])


[Package metools version 1.0.0 Index]