两组时间序列的比较# Biology - 生物学
G*G
1 楼
two time series vectors
timepoints=c(1,2,3,4,5) hours
tv1 =c(1,3,5,8,9)
tv2=c(2,5,7,10,13)
How to calculate the signification of difference between the two vectors?
in addition to t test, what else method is good for this kind of question?
note: the order of the vector is very critical.
if not considering the sequence of elements in the vector, t-test would be
fine.
But we need to consider the sequence of elements in the vector.
timepoints=c(1,2,3,4,5) hours
tv1 =c(1,3,5,8,9)
tv2=c(2,5,7,10,13)
How to calculate the signification of difference between the two vectors?
in addition to t test, what else method is good for this kind of question?
note: the order of the vector is very critical.
if not considering the sequence of elements in the vector, t-test would be
fine.
But we need to consider the sequence of elements in the vector.