Вероятно, глупый вопрос, но какова цель числа 2 в приведенном ниже коде (в частности, 2: nrow)
cumsum_Petal.Width <- iris$Petal.Width[1] # Create new vector object
for(i in 2:nrow(iris)) { # Use nrow as condition
cumsum_Petal.Width[i] <- # Calculate cumulative sum
cumsum_Petal.Width[i - 1] + iris$Petal.Width[i]
}
cumsum_Petal.Width # Print vector to RStudio console
# 0.2 0.4 0.6 0.8 1.0 1.4 1.7 1.9 2.1 2.2