Displaying 1 result from an estimated 1 matches for "temperatursum".
2005 May 12
2
tempsum
hi,
i'd like to calculate a temperatursum, adding the value of each element.
let's say the data looks like this:
x<-c(1,2,3,4,5)
what i want to do, is ploting not the sum in the end but all the
subresults, too,
so my vector holds:
x[i]
[1]
1,3,6,10,15
here is what i tried, which seems to be right to me, bu doesn't work out:...