Skip to content
Prev 325200 / 398503 Next

help using code

Hello,

Thanks for the help!

Your answer resolved my problem with the function I listed, but brought up
a larger question. How is the output of the importdata function stored for
use with other functions (as in, how do I call on that data for use with
other functions)? As a simple example I have another function:

meanXY = function(xyzuvw) {
	xy = c(mean(xyzuvw$x), mean(xyzuvw$y))
	return(xy)
}

I know that the xyzuvw portion is referring to the output of the
importdata function, but I don't know how to call up the necessary data
(hope this makes sense).

Thanks again for the help!

John
On 6/11/13 3:05 PM, "Rui Barradas" <ruipbarradas at sapo.pt> wrote: