Learn R Programming

Compositional (version 1.0)

rmixcomp: Multivariate or univariate regression with compositional data in the covariates side using the $\alpha$-transformation

Description

Multivariate or univariate regression with compositional data in the covariates side using the $\alpha$-transformation.

Usage

rmixcomp(n, prob, mu, sigma, type = "alr")

Arguments

n
The sample size
prob
A vector with mixing probabilities. ITs length is equal to the number of clusters.
mu
A matrix where each row corresponds to the mean vector of each cluster.
sigma
An array consisting of the covariance matrix of each cluster.
type
Should the additive ("type=alr") or the isometric (type="ilr") log-ration be used? The default value is for the additive log-ratio transformation.

Value

  • A list including:
  • idA numeric variable indicating the cluster of simulated vector.
  • xA matrix containing the simulated compositional data. The number of dimensions will be + 1.

Details

A sample from a multivariate Gaussian mixture model is generated.

References

Ryan P. Browne, Aisha ElSherbiny and Paul D. McNicholas (2015). R package mixture: Mixture Models for Clustering and Classification.

See Also

mix.compnorm, bic.mixcompnorm

Examples

Run this code
p <- c(1/3, 1/3, 1/3)
mu <- matrix(nrow = 3, ncol = 4)
s <- array( dim = c(4, 4, 3) )
x <- as.matrix(iris[, 1:4])
ina <- as.numeric(iris[, 5])
for (i in 1:3) {
  mu[i, ] <- colMeans(x[ina == i, ])
  s[, , i] <- cov(x[ina == i, ])
}
y <- rmixcomp(100, p, mu, s, type = "alr")

Run the code above in your browser using DataLab