R/mayberead.R

`mayberead` <-
function(...){

	res <- try(read.table(...))
	if(inherits(res, "try-error")){
		res <- NA
		cat("Error caught - proceeding.\n")
	}	
return(res)
}

Try the Maeswrap package in your browser

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

Maeswrap documentation built on May 2, 2019, 7:58 a.m.