Я запускаю скрипт ... Мой скрипт попадает в этот раздел:
# take the highest (in screen position) y coordinate of each fixation
for(i in (1:nrow(EVdat))){
EVdat$y[i] <- min(EVdat$START_Y[i], EVdat$END_Y[i])
}
# take the mean (in screen position) x coordinate of each fixation
for(i in (1:nrow(EVdat))) {
EVdat$x[i] <- mean(EVdat$START_X[i], EVdat$END_X[i])
}
, и я получаю это:
>for(i in (1:nrow(EVdat))) {
+EVdat$y[i] <- min(EVdat$START_Y[i], EVdat$END_Y[i])
+}
#take the mean (in screen position) x coordinate of each fixation
Я не уверен, почему он это делает,Я не пропускаю ЛЮБЫЕ скобки или скобки и т.д.?Любая помощь, я буду признателен.Спасибо!