CVlog: geometric coefficient of variation (CV for log transformed...

Description Usage Arguments See Also Examples

View source: R/CV.R

Description

geometric coefficient of variation (CV for log transformed data) Typically used to create and violin plot

Usage

1
CVlog(data, top = 30)

Arguments

data

matrix

top

remove top (default 30) CV

See Also

CV

Examples

1
2
3
4
5
6
dat <- matrix(rnorm(1000,10,5), ncol=20)
dim(dat)
cv <- CVlog(dat, top=5)
length(cv)
stopifnot(length(cv) == 45)
hist(cv)

Example output

[1] 50 20
[1] 45

quantable documentation built on May 2, 2019, 4:05 p.m.

Related to CVlog in quantable...