scrutor: Hypothesis testing

Description Usage Arguments Details Value Reference See Also Examples

View source: R/functions.R

Description

This function tests whether the unlabelled observations come from a mixture of two distributions.

Usage

1
2
3
4
scrutor(Y, Z, dist = "norm",
        phi = NULL, pi = NULL, gamma = NULL,
        test = "perm", iter = NULL, kind = NULL,
        debug = TRUE, ...)

Arguments

Y

observations: numeric vector of length n, or numeric matrix with n rows (samples) and q columns (variables)

Z

class labels: numeric vector of length n, or numeric matrix with n rows (samples) and p columns (variables), with entries 0 and NA

dist

distributional assumption: character "norm" (Gaussian), "nbinom" (negative bionomial), or "zinb" (zero-inflated negative binomial)

phi

dispersion parameter(s): numeric vector of length q, or NULL (norm: none, nbinom: MLE)

pi

zero-inflation parameter(s): numeric vector of length q, or NULL (norm: none,nbinom: MLE)

gamma

offset: numeric vector of length n, or NULL

test

resampling procedure: character "perm" (permutation) or "boot" (parametric bootstrap), or NULL

iter

(maximum) number of resampling iterations : positive integer, or NULL

kind

resampling accuracy: numeric between 0 and 1, or NULL; all p-values above kind are approximate

debug

verification of arguments: TRUE or FALSE

...

settings EM algorithm: starts, it.em and epsilon (see arguments)

Details

By default, phi and pi are estimated by the maximum likelihood method, and gamma is replaced by a vector of ones.

Value

This function tests a one-component (H0) against a two-component mixture model (H1).

y

index observations

z

index class labels

lrts

test statistic

p.value

p-value

Reference

A Rauschenberger, RX Menezes, MA van de Wiel, NM van Schoor, and MA Jonker (2020). "Semi-supervised mixture test for detecting markers associated with a quantitative trait", Manuscript in preparation.

See Also

Use mixtura for model fitting. All other functions are internal.

Examples

1
2
3
4
5
6
7
8
# data simulation
n <- 100
z <- rep(0:1,each=n/2)
y <- rnorm(n=n,mean=2*z,sd=1)
z[(n/4):n] <- NA

# hypothesis testing
scrutor(y,z,dist="norm")

semisup documentation built on Nov. 8, 2020, 6:32 p.m.