Retrieves the K/L, model priors (e.g. alpha, beta), and count matrix checksum parameters provided during the creation of the provided celdaModel.

params(celdaMod)

# S4 method for celdaModel
params(celdaMod)

Arguments

celdaMod

celdaModel. Options available in celda::availableModels.

Value

List. Contains the model-specific parameters for the provided celda model object depending on its class.

Examples

data(celdaCGMod) params(celdaCGMod)
#> $K #> [1] 5 #> #> $L #> [1] 10 #> #> $alpha #> [1] 1 #> #> $beta #> [1] 1 #> #> $delta #> [1] 1 #> #> $gamma #> [1] 1 #> #> $seed #> [1] 12345 #> #> $countChecksum #> [1] "b47286aed8081daa674f796655314d67" #>