R/rbind.mlds.df.R

Defines functions `rbind.mlbs.df` rbind.mlds.df

Documented in rbind.mlds.df

rbind.mlds.df <- function(...) {
	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
	}
	
`rbind.mlbs.df` <- function(...){
	 allargs <- list(...)
    dd <- do.call("rbind.data.frame", allargs)
    attr(dd, "invord") <- do.call("c", lapply(allargs, function(x) attr(x, 
        "invord")))
    class(dd) <- c("mlbs.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.