R/check.for.library.R

check.for.library <- function(lib.name = 'valection') {
	return.flag <- TRUE;

	if ('' == Sys.which(lib.name)) {
		return.flag <- FALSE;
		}
		
	return(return.flag);
	}

Try the valection package in your browser

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

valection documentation built on May 2, 2019, 7 a.m.