下面的代码在最后一行出错:“Error in SST(.): Could not find function “SST”。
我不明白为什么 R 认为 SST 是一个函数。该行中的语法与前面的语法相同。
```{r weather_score_anova_exc_Sub7, echo=FALSE, warning=FALSE}
anova_weather_score = ezANOVA(weather_summary_exc_Sub7, dv = .(Score), wid = .(SubjectID), within = .(Backlight, TargetColor), between = .(ColorVision), detailed = TRUE)
Mn = mean(weather_summary_exc_Sub7$Score)
SST = sum((weather_summary_exc_Sub7$Score - Mn)^2)
```
尝试将“SST”更改为其他内容,以防“SST”以某种方式保留——没有效果。尝试将最后一行分成 2 行——没有效果。