Parameters: Extract the fit parameters of the mixture.

View source: R/getters.R

ParametersR Documentation

Extract the fit parameters of the mixture.

Description

This function extracts the mixture parameters as a tibble. The tibble contains one row per component, a column for the mean of the mixture component and a column for its overdispersion. All the Binomial components have a fixed value of 0 for overdispersion..

Usage

Parameters(x)

Arguments

x

An object of class bmix that represents a fit.

Value

A tibble for the the fit parameters of the mixture.

Examples

# The same dataset used in the package vignette
data = data.frame(successes = c(rbinom(30, 100, .4), rbinom(70, 100, .7)), trials = 100)

# BMix fit with default parameters
x = bmixfit(data)

Parameters(x)

caravagn/BMix documentation built on May 10, 2022, 7:41 p.m.