R/taxa.table.R

Defines functions taxa.table

Documented in taxa.table

taxa.table <-
function(x, file = NULL, substitute.sp.white.space = "_"){
    res <- paste(x$FAMILY, x$POSSIBLE_GENUS, gsub(" ", substitute.sp.white.space, x$YOUR_SEARCH), sep = "/")
    if(!is.null(file)){
        writeLines(res, file)
    }
    return(res)
}

Try the plantlist package in your browser

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

plantlist documentation built on May 2, 2019, 4:45 p.m.