Displaying 1 result from an estimated 1 matches for "xstructur".
Did you mean:
structur
2004 Nov 23
0
merge.list proposal
...no place for code snipplets. I am not sure this
mail doesn't suite R-devel. If not, what place could there be for
discussions/proposal on such code snipplets?
-- CODE
merge.list=function(x,y,only.new.y=FALSE,append=FALSE,...)
{
out=x
ystructure = names(c(y,recursive=TRUE))
xstructure = names(c(x,recursive=TRUE))
yunique = ystructure[! ystructure %in% xstructure]
ystructure = sapply(ystructure,FUN=function(element)
strsplit(element,"\\."))
xstructure = sapply(xstructure,FUN=function(element)
strsplit(element,"\\."))
yunique = sappl...