R/aout.pois.R

Defines functions aout.pois

Documented in aout.pois

aout.pois <-
function(data, param, alpha = 0.1, hide.outliers = FALSE){
  # check arguments
  if (!is.numeric(param) | !is.vector(param) | !identical(all.equal(length(param), 1), TRUE)) 
    stop("param must be a numeric vector of length 1.")
  if (!is.numeric(data) | !is.vector(data)) 
    stop("data must be a numeric vector.")
  if (!identical(all.equal(length(alpha), 1), TRUE) | alpha <= 0 | alpha >= 1) 
    stop("alpha must be a real number between 0 and 1, but it is ", alpha, ".")
  # end check arguments
  # determine the outlier region 
  tu <- qpois(alpha, param)
  to <- qpois(1-alpha, param)
  
  P.now <- sum(dpois((tu+1):(to-1), param))
  
  while(P.now <= 1-alpha){ # loop uses the ascending-descending character of the p.d.f.
    if (dpois(tu, param) > dpois(to, param)) {
      next.P <- dpois(tu, param)
      tu <- tu - 1
    }
    else {
      next.P <- dpois(to, param)
      to <- to + 1
    }     
    P.now <- P.now + next.P
  }
  temp.region <- (tu+1):(to-1) # is the inlier region
  # give the results of the analysis
  temp <- data.frame(data = data, is.outlier = !(data %in% temp.region))
  if (identical(all.equal(hide.outliers, FALSE), TRUE)) temp
  else temp[temp[,2] == FALSE, 1]
}

Try the alphaOutlier package in your browser

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

alphaOutlier documentation built on May 2, 2019, 3:59 p.m.