lindley | R Documentation |
Creates a sequence of a Lindley process, also called CUSUM process, on a given sequence. For a sequence (X_k)k, the Lindley process is defined as follows: W_0:=0 and W_(k+1)=max(0,W_k+X_(k+1)). It defines positive excursions above 0.
lindley(sequence)
sequence |
numeric sequence of a Lindley process, eg service time per customer |
a vector with the Lindley process steps
MySeq <- c(1,2,3,-4,1,-3,-1,2,3,-4,1)
lindley(MySeq)
plot(1:length(MySeq),lindley(MySeq),type='b')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.