R/save.cm.R

Defines functions save.cm

Documented in save.cm

# save.cm validates and saves a Community Matrix. It takes:
# CM: a potential Community Matrix
# file: a valid filename with path
save.cm <- function(CM, file = stop("'file' must be specified")) {

	validate.cm(CM)
	save(CM, file = file, ascii = FALSE, compress = TRUE)
		
	# end Save.CM()
	}

Try the LoopAnalyst package in your browser

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

LoopAnalyst documentation built on May 2, 2019, 5:14 a.m.