R/helperSMPrint.R

Defines functions helperSMPrint

helperSMPrint <- function(ret, outDir, fName){

seqVec = seq_along(ret)

invisible(lapply(seqVec, function(x){
    fileName = paste0(outDir, "/", names(ret[x]), fName)
    jpeg(filename=fileName, height=900, width=900)
    print(ret[[x]])
    dev.off()
}))

}

Try the bigPint package in your browser

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

bigPint documentation built on Nov. 8, 2020, 5:07 p.m.