R/outlierSamples.R

Defines functions outlierSamples

Documented in outlierSamples

outlierSamples=function(model,data,z.cutoff=-2) {
	allmean=apply(model$Sol,2,mean)
	seff=allmean[grep("sample.",names(allmean))][c(1:length(levels(data$sample)))]
	seff.z=(seff-mean(seff))/sd(seff)
	return(sub("sample.","",names(which(seff.z<z.cutoff))))
}

Try the MCMC.qpcr package in your browser

Any scripts or data that you put into this service are public.

MCMC.qpcr documentation built on March 31, 2020, 5:22 p.m.