I do not need a graph, but the values of these points are needed. Is it possible to get them somehow separately from the schedule?
their? - yes you can
# https://cran.r-project.org/web/packages/qcc/vignettes/qcc_a_quick_tour.html # Between and within sample extra variation library(qcc) mu = 100 sigma_W = 10 epsilon = rnorm(120, sd=0.3) W = c(-4, 0, 1, 2, 4, 2, 0, -2) # assumed workers cycle W = rep(rep(W, rep(5,8)), 3) x = mu + W + sigma_W*epsilon x = matrix(x, ncol=5, byrow=TRUE) q = qcc(x, type="xbar") # # summary(q) # with(q,summary(limits)) # # print(q) # with(q,print(limits)) # # with(q,summary(data)) # with(q,summary(violations)) # print(q$violations) print(q$violations$beyond.limits)#[1] 5 1 9 17 limitKeys = q$violations$beyond.limits data = q$data # print(limitKeys) # print(data) # print(as.vector(t(data))) # print(length(data)) for(i in 1:length(limitKeys)){ key = limitKeys[i] print(paste('--index',i,'key',key)) arr = data[key,] print(arr) }

Useful features