https://github.com/cran/IQCC
Raw File
Tip revision: 015c96430f6bddf3c9b4b20d878ceae380a023be authored by Emanuel P. Barbosa on 21 September 2009, 00:00:00 UTC
version 1.0
Tip revision: 015c964
UstdII.R
UstdII <-
function(par,sizes,lambda,length){
f<-matrix(nrow=length,ncol=1)
for(i in 1:length){y<-(par[i]-lambda)/sqrt(lambda/sizes[i]); f[i,]<-y}
std<-f*sizes
qcc(std,type="u",sizes,center=0,limits=c(-3,3),title="U standardized phase II")
}

back to top