| aout.pois {alphaOutlier} | R Documentation |
Find \alpha-outliers in Poisson count data
Description
Given the parameters of a Poisson distribution, aout.pois identifies \alpha-outliers in a given data set.
Usage
aout.pois(data, param, alpha = 0.1, hide.outliers = FALSE)
Arguments
data |
a vector. The data set to be examined. |
param |
a vector. Contains the parameter of the Poisson distribution: |
alpha |
an atomic vector. Determines the maximum amount of probability mass the outlier region may contain. Defaults to 0.1. |
hide.outliers |
boolean. Returns the outlier-free data if set to |
Value
Data frame of the input data and an index named is.outlier that flags the outliers with TRUE. If hide.outliers is set to TRUE, a simple vector of the outlier-free data.
Author(s)
A. Rehage
See Also
Examples
aout.pois(data = c(discoveries), param = median(discoveries), alpha = 0.01)
[Package alphaOutlier version 1.2.0 Index]