This function plots the individual contributions to the test statistic. It is called by the function proprius.

intern.plot(u, upper = NULL, xlab = "indices")

Arguments

u

influence: numeric vector of length n

upper

critical values: numeric vector of length n

xlab

label of horizontal axis: character string

Value

The function plots the arguments.

References

A Rauschenberger, MA Jonker, MA van de Wiel, and RX Menezes (2016). "Testing for association between RNA-Seq and high-dimensional data", BMC Bioinformatics. 17:118. html pdf (open access)

See also

This is an internal function. The user functions are cursus, omnibus, and proprius.

Examples

# simulate influences set.seed(1) u <- rchisq(n=100,df=2) # influence plot upper <- rep(qchisq(p=0.95,df=2),times=100) intern.plot(u,upper)