求问如何使用R语言沿时间做点对点的重复测量方差分析
head(data)
A tibble: 6 × 9
组别 编号 姓名 bin time A1B1 A1B2 A2B1 A2B2
<dbl> <dbl> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 1 1 litianwei 201 0 0.168 0.118 0.204 0.195
2 1 1 litianwei 202 1 0.168 0.119 0.202 0.194
3 1 1 litianwei 203 2 0.168 0.121 0.202 0.198
4 1 1 litianwei 204 3 0.168 0.124 0.202 0.198
5 1 1 litianwei 205 4 0.167 0.127 0.204 0.202
6 1 1 litianwei 206 5 0.168 0.128 0.205 0.203
我有一个这样类型的数据集,其中组别为组间变量,A和B为组内自变量,还有有一列时间数据,如何在每个时间点做2(组别)2(A)2(B)的混合设计的重复测量方差分析?即如何沿时间做点对点的方差分析,并输出p值小于0.05的时间范围?