EM_algo_c | R Documentation |
Function written in C++
for estimating the parameters of the model
via Expectation Maximization (EM Algorithm).
EM_algo_c(
obs_pattern_shape,
obs_pattern_frq,
obs_internal_count,
categorical_levels,
random_starts,
max_iterations,
rel_convergence,
con_step_size,
con_random_starts,
con_max_iterations,
con_rel_convergence,
fast,
trace,
con_trace
)
obs_pattern_shape |
|
obs_pattern_frq |
|
obs_internal_count |
|
categorical_levels |
|
random_starts |
|
max_iterations |
|
rel_convergence |
|
con_step_size |
|
con_random_starts |
|
con_max_iterations |
|
con_rel_convergence |
|
fast |
|
trace |
|
con_trace |
|
Function returns a list
with the estimated parameter sets for
every random start. Every parameter set contains the following components:
log_likelihood |
Log likelihood of the estimated solution. |
aem |
Estimated Assignment Error Matrix (aem). The rows represent the true categories while the columns stand for the assigned categories. The cells describe the probability that a coding unit of category i is assigned to category j. |
categorial_sizes |
|
convergence |
If the algorithm converged within the iteration limit
|
iteration |
Number of iterations when the algorithm was terminated. |
Berding, Florian, and Pargmann, Julia (2022).Iota Reliability Concept of the Second Generation.Measures for Content Analysis Done by Humans or Artificial Intelligences. Berlin: Logos. https://doi.org/10.30819/5581
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.