R/Rbind.R

Defines functions Rbind

Documented in Rbind

Rbind <- function(...) {
	.Deprecated("rbind", "MLDS")
	allargs <- list(...)
	dd <- do.call("rbind.data.frame", allargs)
	attr(dd, "invord") <- do.call("c", lapply(allargs,
		function(x) attr(x, "invord")))
#		attr(dd, "stimulus") <- attr(, "stimulus")
	class(dd) <- c("mlds.df", "data.frame")
	dd
	}

Try the MLDS package in your browser

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

MLDS documentation built on Aug. 20, 2023, 9:06 a.m.