R/is.thetaMSAR.R

Defines functions is.thetaMSAR

is.thetaMSAR <-
function(x) {
    if (!is.list(x)) {
        return(FALSE)
    }
    if (length(x) < 4) {
        FALSE
    } else {
        TRUE
    }
}

Try the NHMSAR package in your browser

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

NHMSAR documentation built on Feb. 9, 2022, 9:06 a.m.