cusum_single
cusum_single(x, target = NULL)
x | a numeric vector from which to calculate the cumulative sum statistics |
---|---|
target | value to compare each element of x to. If not provided, the mean of x will be calculated and used as a target value |
a vector of the cumulative sum statistic, centred on the target value
test_vec <- c(0.175, 0.152, 0.15, 0.207, 0.136, 0.212, 0.166) cusum_single(test_vec) #> [1] 0.1750000 0.1558571 0.1347143 0.1705714 0.1354286 0.1762857 0.1711429