shapeIQR: Shape statitic: Interquartile range

Description Usage Arguments Value See Also Examples

View source: R/shape.R

Description

Calculates the interquartile range of a vector.

Usage

1
shapeIQR(x, lower = 0.25, upper = 0.75)

Arguments

x

numeric Rle vector: Coverage series.

lower

numeric: Lower quartile.

upper

numeric: Upper quartile.

Value

Numeric

See Also

Other Shape functions: calcShape(), shapeEntropy(), shapeMean()

Examples

1
2
3
4
5
6
7
8
9
# Hypothetical shard/broad clusters:
x_sharp <- Rle(c(1,1,1,4,5,2,1,1))
x_broad <- Rle(c(1,2,3,5,4,3,2,1))

# Calculate IQR
shapeIQR(x_sharp)
shapeIQR(x_broad)

# See calcShape for more usage examples

MalteThodberg/CAGEfightR documentation built on Sept. 11, 2021, 4:42 a.m.