hey guys, I am very new to Rstudio and need help with my code
I want to create a time-sequence of means (means are spatial) for a specific height. [x,y,z,time]
The code below is the description what I want to code, so that I don't have to calculate every timestep and mean:
wt396t1 <- wtheta[, , 34,1 ]
wt396t2 <- wtheta[, , 34,2 ]
...
wt396t88 <- wtheta[,,34,88]
mean(wt396t1)
mean(wt396t2)
...
seq(mean(wt396t1):mean(wt396t88))