R/rlindley_mix.R

Defines functions rlindley_mix

Documented in rlindley_mix

rlindley_mix = function(n, pi, beta, plot.it = TRUE, empirical = FALSE, col.pop = "red3",
                        col.empirical = "navy", ...){
  g <- length(pi)
  pi = pi/sum(pi)
  if(n == floor(n) && min(c(pi, beta, n)) > 0 && length(beta) == g){
    
    z = rmultinom(n = n, size = 1, pi)
    aux = rowSums(z)
    modal = dlindley_mix(0, pi, beta)
    if(modal > 10* dlindley_mix(1, pi, beta)){
      modal = dlindley_mix(1, pi, beta)
    }
    
    sample = NULL
    for(j in 1:g){
      sample = c(sample, rlindley(aux[j], beta = beta[j], plot.it = FALSE)$sample)
    }
    if(plot.it){
      d.breaks <- ceiling(nclass.Sturges(sample)*2.5)
      modal = min(c(1, max(modal, hist(sample, plot = FALSE, 
                                       if(any(names(list(...)) == "breaks") ==
                                          FALSE){
                                         breaks = d.breaks}, ...)$density)))
      hist(sample,freq = F,border = "gray48",
           main = "Sampling distribution of X",xlab = "x",
           ylab = "Density",
           ylim = c(0, modal),
           if(any(names(list(...)) == "breaks") == FALSE){breaks = d.breaks}, ...)
      pop = function(x){dlindley_mix(x, pi, beta)}
      curve(pop, col = col.pop, lwd = 3, add = T)
      if(empirical){
        lines(density(sample),col = col.empirical,lwd = 3)
        legend("topright", legend=(c("Population", "Empirical")),
               fill=c(col.pop, col.empirical),border = c(col.pop, col.empirical), bty="n")
      }
      else{
        legend("topright", legend=(c("Population")),
               fill=c(col.pop),border = c(col.pop), bty="n")
      }
      p <- recordPlot()
    }
    ord <- order(sample)
    sample <- cbind(sample, rep(1:g, aux))
    sample <- sample[ord,]
    if(plot.it){
      output = list(sample[,1], g, pi, beta, sample[,2], p)
      names(output) = c("sample", "g", "pi", "beta", "classification", "plot")
    }
    else{
      output = list(sample[,1], g, pi, beta, sample[,2])
      names(output) = c("sample", "g", "pi", "beta", "classification")
    }
    return(output)}
  else stop("The parametric space must be respected.")
}
matheuscastro43/finiteMix documentation built on March 30, 2022, 12:49 p.m.