Displaying 1 result from an estimated 1 matches for "xmerge".
Did you mean:
merge
2008 Aug 07
1
Where is the archive? Calling a function within a function.
...lized that I didn't know where it was. Is there a searchable archive for this list? Thank you.
My question is calling a function from within a function. I have
smerge <- function(d1,d2) {
temp <- merge(d1,d2,all=TRUE,by.x="DayOfYear",by.y="DayOfYear")
return (xmerge(temp))
}
But I get an error message indicating that xmerge could not be found when it is defined just above.
Thank you.
Kevin