Nothing
CROPS <- function(data, penalty="CROPS", pen.value, method="PELT", test.stat="Normal", class=TRUE, param.est=TRUE, minseglen, shape, func){
if(method != "PELT"){stop('CROPS is a valid penalty choice only if method="PELT", please change your method or your penalty.')}
mu <- mean(data)
sumstat=cbind(c(0,cumsum(coredata(data))),c(0,cumsum(coredata(data)^2)),cumsum(c(0,(coredata(data)-mu)^2)))
switch(test.stat,
"Normal" = {stat = "norm"},
"Exponential" = {stat = "exp"},
"Gamma" = {stat = "gamma"},
"Poisson" = {stat = "poisson"},
{stop("Only Normal, Exponential, Gamma and Poisson are valid test statistics")}
)
costfunc = paste0(func, ".", stat)
out = range_of_penalties(sumstat, cost=costfunc, min_pen=pen.value[1], max_pen=pen.value[2], minseglen=minseglen)
if(func=="var"){
cpttype="variance"
}else if(func=="meanvar"){
cpttype="mean and variance"
}else{
cpttype="mean"
}
if(class==TRUE){
ans = class_input(data=data,cpttype=cpttype, method="PELT", test.stat=test.stat, penalty=penalty, pen.value=pen.value, minseglen=minseglen, param.estimates=param.est, out=out,shape=shape)
if(func=="var"){
param.est(ans)=c(param.est(ans),mean=mu)
}
return(ans)
}else{return(out)}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.