monthly <- c(100, 120, 130, 100, 140) # replace this of course with actual data
result <- rep(NA, length(monthly))
for (i in 1:(length(monthly)-1)) {
result[i+1] <- (monthly[i+1] - monthly[i]) / monthly[i]
}
result
现在将包含您的答案。请注意,第一个位置将包含一个NA
,因为您对月份i
为 1 不感兴趣。