rmix: The mixture random generation for the well-known models

Description Usage Arguments Value Examples

View source: R/rmix.R

Description

Random generation for the well-known mixture models with parameters weigth, shape and scale.

Usage

1
rmix(N, model, K, param)

Arguments

N

Number of inputs for the mixture random generation

model

Choice of one of the mixture models; gompertz, log-logistics, log-normal, and weibull.

K

Number of components

param

Vector of weight ω, shape α, and scale β parameters.

Value

Outputs of random generated vector lenght of N from the given mixture model.

Examples

1
2
3
4
5
6
7
N<-100
K<-2
weight<-c(0.5,0.5)
alpha<-c(0.5,1)
beta<-c(1,0.5)
param<-c(weight,alpha,beta)
rmix(N, "weibull", K, param)

fitmix documentation built on April 19, 2021, 9:06 a.m.

Related to rmix in fitmix...