gamma_scale_one_way {LRTesteR}R Documentation

Test the equality of scale parameters of gamma distributions.

Description

Test the equality of scale parameters of gamma distributions.

Usage

gamma_scale_one_way(x, fctr, conf.level = 0.95)

Arguments

x

a numeric vector of at least 50 data values per group.

fctr

a factor vector indicating groups.

conf.level

overall confidence level of the likelihood intervals. Uses Bonferroni correction.

Details

Value

An S3 class containing the test statistic, p value, list of likelihood based confidence intervals, overall confidence level, individual confidence level of each interval and alternative hypothesis.

Source

Examples

library(LRTesteR)

# Null is true
set.seed(1)
x <- rgamma(150, 1, scale = 2)
fctr <- c(rep(1, 50), rep(2, 50), rep(3, 50))
fctr <- factor(fctr, levels = c("1", "2", "3"))
gamma_scale_one_way(x, fctr, .95)

# Null is false
set.seed(1)
x <- c(rgamma(50, 2, scale = 1), rgamma(50, 2, scale = 2), rgamma(50, 2, scale = 3))
fctr <- c(rep(1, 50), rep(2, 50), rep(3, 50))
fctr <- factor(fctr, levels = c("1", "2", "3"))
gamma_scale_one_way(x, fctr, .95)

[Package LRTesteR version 1.1.1 Index]