Learn R Programming

mi (version 1.1)

count-class: Class "count"

Description

The count class inherits from the missing_variable-class and is intended for count data. Aside from these facts, the rest of the documentation here is primarily directed toward developers.

Arguments

Objects from the Classes

Objects can be created that are of count class via the missing_variable generic function by specifying type = "count"

Slots

The count class inherits from the missing_variable class and its raw_data slot must consist of nonnegative integers. Its default family is quasipoisson and its default fit_model method is a wrapper for bayesglm. The other possibility for the family is poisson but is not recommended due to its overly-restrictive nature.

See Also

missing_variable, continuous-class, positive-continuous-class, proportion-class

Examples

Run this code
# NOT RUN {
# STEP 0: GET DATA
data(CHAIN, package = "mi")

# STEP 0.5 CREATE A missing_variable (you never need to actually do this)
age <- missing_variable(as.integer(CHAIN$age), type = "count")
show(age)
# }

Run the code above in your browser using DataLab