R/m12.R

Defines functions m12

Documented in m12

# Verified 1.3.18
m12 <-
function(x) {
        r = x %% 12
        if (r == 0) { return(12) }
        return(r)
}

Try the vetools package in your browser

Any scripts or data that you put into this service are public.

vetools documentation built on May 2, 2019, 10:15 a.m.