potentially required functions can be found here: http://www.psych.mcgill.ca/misc/fda/downloads/FDAfuns/
LE:
In [1]:
%load_ext rmagic
In [9]:
%%R
x1 <- rnorm(10, mean=.3, sd=3)
x2 <- x1^2
plot(x1, x2)
In [5]:
x1
Out[5]:
In [22]:
%%R -o m2
x2 = seq(from=31, to=60, length=30)
m2 = matrix(data=x2, nrow=5)
In [23]:
m2
Out[23]:
In [ ]: