Displaying 3 results from an estimated 3 matches for "timecourse".
Did you mean:
timecourses
2003 Oct 08
1
using split.screen() in Sweave
Dear R and sweave users
A further problem, which I couldn't resolve, using the manual: In R I
use the split.screen command to put e.g. two timecourses one above the
other into one plot:
split.screen(c(2,1))
screen(1)
plot(stick,type='h', col="red",lwd=2)
screen(2)
plot(deconvolution.amplitude,type='h',col="blue",lwd=2)
Is there a similar way, doing this in Sweave?
many thanks
Christoph
--
Christoph Lehma...
2005 Oct 06
2
data.frame error using sem package
I keep getting this error when I try to use the sem package. I and
another person who has successfully used the sem package for similar
analysis (fMRI effective connectivity) cannot figure out what is
wrong with my code. I would appreciate any suggestions.
The error message:
Error in data.frame(object$coeff, se, z, 2 * (1 - pnorm(abs(z))),
par.code) :
arguments imply differing
2008 Jul 06
1
interpreting mixed model anova results
Hi, I am trying to do a repeated measures ANOVA to determine if there is a
significant difference between two sets of timecourse data. Each individual
was given a single treatment and then measured for one variable for 10 days.
Here is made-up example of what my data would look like:
data<-data.frame(subject=rep(c("A1","A2","A3","B1","B2","B3"),10),treatment=rep...