Description Usage Arguments Value Examples
This function plots the evolution of the elements of the C matrix for a mELO model. The C matrix has a row vector for each player, and k columns. Where k determines the complexity of non-transitive interactions being modelled.
1 | plot_c_mat(mELO_model)
|
mELO_model |
a |
a plot.
1 2 3 4 5 6 7 8 9 10 11 | head(rpsfw_df)
# mELO model with k=1
rpsfw_mELO_1 <- mELO(rpsfw_df, k=1)
plot_c_mat(rpsfw_mELO_1)
# not stable, mELO with k=1 can't accurately model the dynamics
# mELO model with k=2
rpsfw_mELO_2 <- mELO(rpsfw_df, k=2)
plot_c_mat(rpsfw_mELO_2)
# stable, good estimates
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.