为什么 R 认为我的变量是一个函数?

问题描述 投票:0回答:0

下面的代码在最后一行出错:“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 行——没有效果。

r function variables
© www.soinside.com 2019 - 2024. All rights reserved.