Introduction to heterogeneous effects analysis of conjoint experiments using cjbart

set.seed(89)
library(ggplot2)
library(cjbart)
#> Loading required package: BART
#> Loading required package: nlme
#> Loading required package: survival

This vignette provides a brief example of how to estimate heterogeneous effects in conjoint experiments, using .

We first simulate a basic conjoint design for the purpose of illustration. Suppose we conducted a conjoint experiment on 100 individuals, where each individual makes 5 discrete choices between two profiles. Each profile has three attributes (A-E), and we also record two covariates for each subject. The resulting data contains 1000 observations.

subjects <- 100
rounds <- 5
profiles <- 2
obs <- subjects*rounds*profiles

fake_data <- data.frame(A = sample(c("a1","a2","a3"), obs, replace = TRUE),
                        B = sample(c("b1","b2","b3"), obs, replace = TRUE),
                        C = sample(c("c1","c2","c3"), obs, replace = TRUE),
                        D = sample(c("d1","d2","d3"), obs, replace = TRUE),
                        E = sample(c("e1","e2","e3"), obs, replace = TRUE),

                        covar1 = rep(runif(subjects, 0 ,1),
                                     each = rounds),
                        covar2 = rep(sample(c(1,0),
                                            subjects,
                                            replace = TRUE),
                                     each = rounds),

                        id1 = rep(1:subjects, each=rounds),
                        stringsAsFactors = TRUE)

fake_data$Y <- ifelse(fake_data$E == "e2",
                      rbinom(obs, 1, fake_data$covar1),
                      sample(c(0,1), obs, replace = TRUE))

Train a probit BART model on conjoint data

To estimate a conjoint model on this data we will use the cjbart() function, which uses Bayesian Additive Regression Trees (BART) to approximate the relationships between the outcome (a binary choice), the randomized attribute-levels, and the included covariates. For the sake of efficiency in this example, we reduce the number of trees (ntree) and cuts (numcut) used to estimate the BART model. More generally, users can pass arguments to the underlying BART algorithm (see ?BART::pbart) directly from the cjbart function to adjust the model hyperparameters:

cj_model <- cjbart(data = fake_data,
                   Y = "Y", 
                   id = "id1",
                   ntree = 15, numcut = 20)
#> Detected forced-choice outcome

To generate heterogeneity estimates at the observation- and individual-level, we use the IMCE() function. We pass in both the original experimental data, and the conjoint model generated in the last step. At this point, we also declare the names of the conjoint attribute variables (attribs) and the reference category we want to use for each attribute when calculating the marginal component effects (ref_levels). The vector of reference levels must be of the same length as attribs, with the level at position i corresponding to the attrib[i]:

het_effects <- IMCE(data = fake_data, 
                    model = cj_model, 
                    attribs = c("A","B","C","D","E"),
                    ref_levels = c("a1","b1","c1","d1","e1"),
                    cores = 1)
#> Calculating OMCEs for attribute: A [1/5]
#> Calculating OMCEs for attribute: B [2/5]
#> Calculating OMCEs for attribute: C [3/5]
#> Calculating OMCEs for attribute: D [4/5]
#> Calculating OMCEs for attribute: E [5/5]
#> Calculating IMCEs

IMCE() returns an object of class “cjbart”, which contains the individual-level marginal component effects (IMCEs), matrices reflecting the upper and lower values of each estimate’s confidence interval respectively, and optionally the underlying observation-level marginal component effects (OMCEs) when keep_omces = TRUE.

It is likely that users will want to compare the conjoint estimation strategy to other estimation strategies, such as logistic regression models. We can recover the average marginal component effect (AMCE) for the BART model using the summary() command:

summary(het_effects)
#> Individual marginal component effects (IMCEs)
#> # A tibble: 10 × 6
#>    Attribute Level     AMCE     Min.       Max. Std.Dev
#>    <chr>     <chr>    <dbl>    <dbl>      <dbl>   <dbl>
#>  1 A         a2     0.0726   0.0379   0.0956    0.0126 
#>  2 A         a3     0.0228   0.00899  0.0319    0.00720
#>  3 B         b2     0.0186   0.00918  0.0300    0.00587
#>  4 B         b3     0.00360 -0.00914  0.0159    0.00599
#>  5 C         c2    -0.0237  -0.0469  -0.0000195 0.00959
#>  6 C         c3    -0.0345  -0.0587  -0.0104    0.0105 
#>  7 D         d2     0.0127   0.00554  0.0206    0.00282
#>  8 D         d3     0.00699  0.00262  0.0108    0.00208
#>  9 E         e2     0.0394  -0.290    0.400     0.211  
#> 10 E         e3    -0.00519 -0.0191   0.0101    0.00827

We can plot the IMCEs, color coding the points by some covariate value, using the in-built plot() function:

plot(het_effects, covar = "covar1")

To aid presentation, the plot function can restrict which attribute-levels are displayed by using the plot_levels argument:

plot(het_effects, covar = "covar1", plot_levels = c("a2","a3","e2","e3"))

We can estimate the importance of covariates to the model using the het_vimp() function, which calculates standardized importance scores using random forest-based permutation tests. Calling plot() on the result will return a heatmap of these scores for each combination of attribute-level and covariate (users can restrict which attribute levels and covariates are considered, see the documentation for more details):

vimp_estimates <- het_vimp(imces = het_effects, cores = 1)
#> Calculating importance metrics for attribute-level: a3
#> [                                                  ]   1%[█                                                 ]   2%[██                                                ]   3%[██                                                ]   4%[██                                                ]   5%[███                                               ]   6%[████                                              ]   7%[████                                              ]   8%[████                                              ]   9%[█████                                             ]  10%[██████                                            ]  11%[██████                                            ]  12%[██████                                            ]  13%[███████                                           ]  14%[████████                                          ]  15%[████████                                          ]  16%[████████                                          ]  17%[█████████                                         ]  18%[██████████                                        ]  19%[██████████                                        ]  20%[██████████                                        ]  21%[███████████                                       ]  22%[████████████                                      ]  23%[████████████                                      ]  24%[████████████                                      ]  25%[█████████████                                     ]  26%[██████████████                                    ]  27%[██████████████                                    ]  28%[██████████████                                    ]  29%[███████████████                                   ]  30%[████████████████                                  ]  31%[████████████████                                  ]  32%[████████████████                                  ]  33%[█████████████████                                 ]  34%[██████████████████                                ]  35%[██████████████████                                ]  36%[██████████████████                                ]  37%[███████████████████                               ]  38%[████████████████████                              ]  39%[████████████████████                              ]  40%[████████████████████                              ]  41%[█████████████████████                             ]  42%[██████████████████████                            ]  43%[██████████████████████                            ]  44%[██████████████████████                            ]  45%[███████████████████████                           ]  46%[████████████████████████                          ]  47%[████████████████████████                          ]  48%[████████████████████████                          ]  49%[█████████████████████████                         ]  50%[██████████████████████████                        ]  51%[██████████████████████████                        ]  52%[██████████████████████████                        ]  53%[███████████████████████████                       ]  54%[████████████████████████████                      ]  55%[████████████████████████████                      ]  56%[████████████████████████████                      ]  57%[█████████████████████████████                     ]  58%[██████████████████████████████                    ]  59%[██████████████████████████████                    ]  60%[██████████████████████████████                    ]  61%[███████████████████████████████                   ]  62%[████████████████████████████████                  ]  63%[████████████████████████████████                  ]  64%[████████████████████████████████                  ]  65%[█████████████████████████████████                 ]  66%[██████████████████████████████████                ]  67%[██████████████████████████████████                ]  68%[██████████████████████████████████                ]  69%[███████████████████████████████████               ]  70%[████████████████████████████████████              ]  71%[████████████████████████████████████              ]  72%[████████████████████████████████████              ]  73%[█████████████████████████████████████             ]  74%[██████████████████████████████████████            ]  75%[██████████████████████████████████████            ]  76%[██████████████████████████████████████            ]  77%[███████████████████████████████████████           ]  78%[████████████████████████████████████████          ]  79%[████████████████████████████████████████          ]  80%[████████████████████████████████████████          ]  81%[█████████████████████████████████████████         ]  82%[██████████████████████████████████████████        ]  83%[██████████████████████████████████████████        ]  84%[██████████████████████████████████████████        ]  85%[███████████████████████████████████████████       ]  86%[████████████████████████████████████████████      ]  87%[████████████████████████████████████████████      ]  88%[████████████████████████████████████████████      ]  89%[█████████████████████████████████████████████     ]  90%[██████████████████████████████████████████████    ]  91%[██████████████████████████████████████████████    ]  92%[██████████████████████████████████████████████    ]  93%[███████████████████████████████████████████████   ]  94%[████████████████████████████████████████████████  ]  95%[████████████████████████████████████████████████  ]  96%[████████████████████████████████████████████████  ]  97%[█████████████████████████████████████████████████ ]  98%[██████████████████████████████████████████████████]  99%[██████████████████████████████████████████████████] 100%                                                            
#> Calculating importance metrics for attribute-level: a2
#> [                                                  ]   1%[█                                                 ]   2%[██                                                ]   3%[██                                                ]   4%[██                                                ]   5%[███                                               ]   6%[████                                              ]   7%[████                                              ]   8%[████                                              ]   9%[█████                                             ]  10%[██████                                            ]  11%[██████                                            ]  12%[██████                                            ]  13%[███████                                           ]  14%[████████                                          ]  15%[████████                                          ]  16%[████████                                          ]  17%[█████████                                         ]  18%[██████████                                        ]  19%[██████████                                        ]  20%[██████████                                        ]  21%[███████████                                       ]  22%[████████████                                      ]  23%[████████████                                      ]  24%[████████████                                      ]  25%[█████████████                                     ]  26%[██████████████                                    ]  27%[██████████████                                    ]  28%[██████████████                                    ]  29%[███████████████                                   ]  30%[████████████████                                  ]  31%[████████████████                                  ]  32%[████████████████                                  ]  33%[█████████████████                                 ]  34%[██████████████████                                ]  35%[██████████████████                                ]  36%[██████████████████                                ]  37%[███████████████████                               ]  38%[████████████████████                              ]  39%[████████████████████                              ]  40%[████████████████████                              ]  41%[█████████████████████                             ]  42%[██████████████████████                            ]  43%[██████████████████████                            ]  44%[██████████████████████                            ]  45%[███████████████████████                           ]  46%[████████████████████████                          ]  47%[████████████████████████                          ]  48%[████████████████████████                          ]  49%[█████████████████████████                         ]  50%[██████████████████████████                        ]  51%[██████████████████████████                        ]  52%[██████████████████████████                        ]  53%[███████████████████████████                       ]  54%[████████████████████████████                      ]  55%[████████████████████████████                      ]  56%[████████████████████████████                      ]  57%[█████████████████████████████                     ]  58%[██████████████████████████████                    ]  59%[██████████████████████████████                    ]  60%[██████████████████████████████                    ]  61%[███████████████████████████████                   ]  62%[████████████████████████████████                  ]  63%[████████████████████████████████                  ]  64%[████████████████████████████████                  ]  65%[█████████████████████████████████                 ]  66%[██████████████████████████████████                ]  67%[██████████████████████████████████                ]  68%[██████████████████████████████████                ]  69%[███████████████████████████████████               ]  70%[████████████████████████████████████              ]  71%[████████████████████████████████████              ]  72%[████████████████████████████████████              ]  73%[█████████████████████████████████████             ]  74%[██████████████████████████████████████            ]  75%[██████████████████████████████████████            ]  76%[██████████████████████████████████████            ]  77%[███████████████████████████████████████           ]  78%[████████████████████████████████████████          ]  79%[████████████████████████████████████████          ]  80%[████████████████████████████████████████          ]  81%[█████████████████████████████████████████         ]  82%[██████████████████████████████████████████        ]  83%[██████████████████████████████████████████        ]  84%[██████████████████████████████████████████        ]  85%[███████████████████████████████████████████       ]  86%[████████████████████████████████████████████      ]  87%[████████████████████████████████████████████      ]  88%[████████████████████████████████████████████      ]  89%[█████████████████████████████████████████████     ]  90%[██████████████████████████████████████████████    ]  91%[██████████████████████████████████████████████    ]  92%[██████████████████████████████████████████████    ]  93%[███████████████████████████████████████████████   ]  94%[████████████████████████████████████████████████  ]  95%[████████████████████████████████████████████████  ]  96%[████████████████████████████████████████████████  ]  97%[█████████████████████████████████████████████████ ]  98%[██████████████████████████████████████████████████]  99%[██████████████████████████████████████████████████] 100%                                                            
#> Calculating importance metrics for attribute-level: b2
#> [                                                  ]   1%[█                                                 ]   2%[██                                                ]   3%[██                                                ]   4%[██                                                ]   5%[███                                               ]   6%[████                                              ]   7%[████                                              ]   8%[████                                              ]   9%[█████                                             ]  10%[██████                                            ]  11%[██████                                            ]  12%[██████                                            ]  13%[███████                                           ]  14%[████████                                          ]  15%[████████                                          ]  16%[████████                                          ]  17%[█████████                                         ]  18%[██████████                                        ]  19%[██████████                                        ]  20%[██████████                                        ]  21%[███████████                                       ]  22%[████████████                                      ]  23%[████████████                                      ]  24%[████████████                                      ]  25%[█████████████                                     ]  26%[██████████████                                    ]  27%[██████████████                                    ]  28%[██████████████                                    ]  29%[███████████████                                   ]  30%[████████████████                                  ]  31%[████████████████                                  ]  32%[████████████████                                  ]  33%[█████████████████                                 ]  34%[██████████████████                                ]  35%[██████████████████                                ]  36%[██████████████████                                ]  37%[███████████████████                               ]  38%[████████████████████                              ]  39%[████████████████████                              ]  40%[████████████████████                              ]  41%[█████████████████████                             ]  42%[██████████████████████                            ]  43%[██████████████████████                            ]  44%[██████████████████████                            ]  45%[███████████████████████                           ]  46%[████████████████████████                          ]  47%[████████████████████████                          ]  48%[████████████████████████                          ]  49%[█████████████████████████                         ]  50%[██████████████████████████                        ]  51%[██████████████████████████                        ]  52%[██████████████████████████                        ]  53%[███████████████████████████                       ]  54%[████████████████████████████                      ]  55%[████████████████████████████                      ]  56%[████████████████████████████                      ]  57%[█████████████████████████████                     ]  58%[██████████████████████████████                    ]  59%[██████████████████████████████                    ]  60%[██████████████████████████████                    ]  61%[███████████████████████████████                   ]  62%[████████████████████████████████                  ]  63%[████████████████████████████████                  ]  64%[████████████████████████████████                  ]  65%[█████████████████████████████████                 ]  66%[██████████████████████████████████                ]  67%[██████████████████████████████████                ]  68%[██████████████████████████████████                ]  69%[███████████████████████████████████               ]  70%[████████████████████████████████████              ]  71%[████████████████████████████████████              ]  72%[████████████████████████████████████              ]  73%[█████████████████████████████████████             ]  74%[██████████████████████████████████████            ]  75%[██████████████████████████████████████            ]  76%[██████████████████████████████████████            ]  77%[███████████████████████████████████████           ]  78%[████████████████████████████████████████          ]  79%[████████████████████████████████████████          ]  80%[████████████████████████████████████████          ]  81%[█████████████████████████████████████████         ]  82%[██████████████████████████████████████████        ]  83%[██████████████████████████████████████████        ]  84%[██████████████████████████████████████████        ]  85%[███████████████████████████████████████████       ]  86%[████████████████████████████████████████████      ]  87%[████████████████████████████████████████████      ]  88%[████████████████████████████████████████████      ]  89%[█████████████████████████████████████████████     ]  90%[██████████████████████████████████████████████    ]  91%[██████████████████████████████████████████████    ]  92%[██████████████████████████████████████████████    ]  93%[███████████████████████████████████████████████   ]  94%[████████████████████████████████████████████████  ]  95%[████████████████████████████████████████████████  ]  96%[████████████████████████████████████████████████  ]  97%[█████████████████████████████████████████████████ ]  98%[██████████████████████████████████████████████████]  99%[██████████████████████████████████████████████████] 100%                                                            
#> Calculating importance metrics for attribute-level: b3
#> [                                                  ]   1%[█                                                 ]   2%[██                                                ]   3%[██                                                ]   4%[██                                                ]   5%[███                                               ]   6%[████                                              ]   7%[████                                              ]   8%[████                                              ]   9%[█████                                             ]  10%[██████                                            ]  11%[██████                                            ]  12%[██████                                            ]  13%[███████                                           ]  14%[████████                                          ]  15%[████████                                          ]  16%[████████                                          ]  17%[█████████                                         ]  18%[██████████                                        ]  19%[██████████                                        ]  20%[██████████                                        ]  21%[███████████                                       ]  22%[████████████                                      ]  23%[████████████                                      ]  24%[████████████                                      ]  25%[█████████████                                     ]  26%[██████████████                                    ]  27%[██████████████                                    ]  28%[██████████████                                    ]  29%[███████████████                                   ]  30%[████████████████                                  ]  31%[████████████████                                  ]  32%[████████████████                                  ]  33%[█████████████████                                 ]  34%[██████████████████                                ]  35%[██████████████████                                ]  36%[██████████████████                                ]  37%[███████████████████                               ]  38%[████████████████████                              ]  39%[████████████████████                              ]  40%[████████████████████                              ]  41%[█████████████████████                             ]  42%[██████████████████████                            ]  43%[██████████████████████                            ]  44%[██████████████████████                            ]  45%[███████████████████████                           ]  46%[████████████████████████                          ]  47%[████████████████████████                          ]  48%[████████████████████████                          ]  49%[█████████████████████████                         ]  50%[██████████████████████████                        ]  51%[██████████████████████████                        ]  52%[██████████████████████████                        ]  53%[███████████████████████████                       ]  54%[████████████████████████████                      ]  55%[████████████████████████████                      ]  56%[████████████████████████████                      ]  57%[█████████████████████████████                     ]  58%[██████████████████████████████                    ]  59%[██████████████████████████████                    ]  60%[██████████████████████████████                    ]  61%[███████████████████████████████                   ]  62%[████████████████████████████████                  ]  63%[████████████████████████████████                  ]  64%[████████████████████████████████                  ]  65%[█████████████████████████████████                 ]  66%[██████████████████████████████████                ]  67%[██████████████████████████████████                ]  68%[██████████████████████████████████                ]  69%[███████████████████████████████████               ]  70%[████████████████████████████████████              ]  71%[████████████████████████████████████              ]  72%[████████████████████████████████████              ]  73%[█████████████████████████████████████             ]  74%[██████████████████████████████████████            ]  75%[██████████████████████████████████████            ]  76%[██████████████████████████████████████            ]  77%[███████████████████████████████████████           ]  78%[████████████████████████████████████████          ]  79%[████████████████████████████████████████          ]  80%[████████████████████████████████████████          ]  81%[█████████████████████████████████████████         ]  82%[██████████████████████████████████████████        ]  83%[██████████████████████████████████████████        ]  84%[██████████████████████████████████████████        ]  85%[███████████████████████████████████████████       ]  86%[████████████████████████████████████████████      ]  87%[████████████████████████████████████████████      ]  88%[████████████████████████████████████████████      ]  89%[█████████████████████████████████████████████     ]  90%[██████████████████████████████████████████████    ]  91%[██████████████████████████████████████████████    ]  92%[██████████████████████████████████████████████    ]  93%[███████████████████████████████████████████████   ]  94%[████████████████████████████████████████████████  ]  95%[████████████████████████████████████████████████  ]  96%[████████████████████████████████████████████████  ]  97%[█████████████████████████████████████████████████ ]  98%[██████████████████████████████████████████████████]  99%[██████████████████████████████████████████████████] 100%                                                            
#> Calculating importance metrics for attribute-level: c2
#> [                                                  ]   1%[█                                                 ]   2%[██                                                ]   3%[██                                                ]   4%[██                                                ]   5%[███                                               ]   6%[████                                              ]   7%[████                                              ]   8%[████                                              ]   9%[█████                                             ]  10%[██████                                            ]  11%[██████                                            ]  12%[██████                                            ]  13%[███████                                           ]  14%[████████                                          ]  15%[████████                                          ]  16%[████████                                          ]  17%[█████████                                         ]  18%[██████████                                        ]  19%[██████████                                        ]  20%[██████████                                        ]  21%[███████████                                       ]  22%[████████████                                      ]  23%[████████████                                      ]  24%[████████████                                      ]  25%[█████████████                                     ]  26%[██████████████                                    ]  27%[██████████████                                    ]  28%[██████████████                                    ]  29%[███████████████                                   ]  30%[████████████████                                  ]  31%[████████████████                                  ]  32%[████████████████                                  ]  33%[█████████████████                                 ]  34%[██████████████████                                ]  35%[██████████████████                                ]  36%[██████████████████                                ]  37%[███████████████████                               ]  38%[████████████████████                              ]  39%[████████████████████                              ]  40%[████████████████████                              ]  41%[█████████████████████                             ]  42%[██████████████████████                            ]  43%[██████████████████████                            ]  44%[██████████████████████                            ]  45%[███████████████████████                           ]  46%[████████████████████████                          ]  47%[████████████████████████                          ]  48%[████████████████████████                          ]  49%[█████████████████████████                         ]  50%[██████████████████████████                        ]  51%[██████████████████████████                        ]  52%[██████████████████████████                        ]  53%[███████████████████████████                       ]  54%[████████████████████████████                      ]  55%[████████████████████████████                      ]  56%[████████████████████████████                      ]  57%[█████████████████████████████                     ]  58%[██████████████████████████████                    ]  59%[██████████████████████████████                    ]  60%[██████████████████████████████                    ]  61%[███████████████████████████████                   ]  62%[████████████████████████████████                  ]  63%[████████████████████████████████                  ]  64%[████████████████████████████████                  ]  65%[█████████████████████████████████                 ]  66%[██████████████████████████████████                ]  67%[██████████████████████████████████                ]  68%[██████████████████████████████████                ]  69%[███████████████████████████████████               ]  70%[████████████████████████████████████              ]  71%[████████████████████████████████████              ]  72%[████████████████████████████████████              ]  73%[█████████████████████████████████████             ]  74%[██████████████████████████████████████            ]  75%[██████████████████████████████████████            ]  76%[██████████████████████████████████████            ]  77%[███████████████████████████████████████           ]  78%[████████████████████████████████████████          ]  79%[████████████████████████████████████████          ]  80%[████████████████████████████████████████          ]  81%[█████████████████████████████████████████         ]  82%[██████████████████████████████████████████        ]  83%[██████████████████████████████████████████        ]  84%[██████████████████████████████████████████        ]  85%[███████████████████████████████████████████       ]  86%[████████████████████████████████████████████      ]  87%[████████████████████████████████████████████      ]  88%[████████████████████████████████████████████      ]  89%[█████████████████████████████████████████████     ]  90%[██████████████████████████████████████████████    ]  91%[██████████████████████████████████████████████    ]  92%[██████████████████████████████████████████████    ]  93%[███████████████████████████████████████████████   ]  94%[████████████████████████████████████████████████  ]  95%[████████████████████████████████████████████████  ]  96%[████████████████████████████████████████████████  ]  97%[█████████████████████████████████████████████████ ]  98%[██████████████████████████████████████████████████]  99%[██████████████████████████████████████████████████] 100%                                                            
#> Calculating importance metrics for attribute-level: c3
#> [                                                  ]   1%[█                                                 ]   2%[██                                                ]   3%[██                                                ]   4%[██                                                ]   5%[███                                               ]   6%[████                                              ]   7%[████                                              ]   8%[████                                              ]   9%[█████                                             ]  10%[██████                                            ]  11%[██████                                            ]  12%[██████                                            ]  13%[███████                                           ]  14%[████████                                          ]  15%[████████                                          ]  16%[████████                                          ]  17%[█████████                                         ]  18%[██████████                                        ]  19%[██████████                                        ]  20%[██████████                                        ]  21%[███████████                                       ]  22%[████████████                                      ]  23%[████████████                                      ]  24%[████████████                                      ]  25%[█████████████                                     ]  26%[██████████████                                    ]  27%[██████████████                                    ]  28%[██████████████                                    ]  29%[███████████████                                   ]  30%[████████████████                                  ]  31%[████████████████                                  ]  32%[████████████████                                  ]  33%[█████████████████                                 ]  34%[██████████████████                                ]  35%[██████████████████                                ]  36%[██████████████████                                ]  37%[███████████████████                               ]  38%[████████████████████                              ]  39%[████████████████████                              ]  40%[████████████████████                              ]  41%[█████████████████████                             ]  42%[██████████████████████                            ]  43%[██████████████████████                            ]  44%[██████████████████████                            ]  45%[███████████████████████                           ]  46%[████████████████████████                          ]  47%[████████████████████████                          ]  48%[████████████████████████                          ]  49%[█████████████████████████                         ]  50%[██████████████████████████                        ]  51%[██████████████████████████                        ]  52%[██████████████████████████                        ]  53%[███████████████████████████                       ]  54%[████████████████████████████                      ]  55%[████████████████████████████                      ]  56%[████████████████████████████                      ]  57%[█████████████████████████████                     ]  58%[██████████████████████████████                    ]  59%[██████████████████████████████                    ]  60%[██████████████████████████████                    ]  61%[███████████████████████████████                   ]  62%[████████████████████████████████                  ]  63%[████████████████████████████████                  ]  64%[████████████████████████████████                  ]  65%[█████████████████████████████████                 ]  66%[██████████████████████████████████                ]  67%[██████████████████████████████████                ]  68%[██████████████████████████████████                ]  69%[███████████████████████████████████               ]  70%[████████████████████████████████████              ]  71%[████████████████████████████████████              ]  72%[████████████████████████████████████              ]  73%[█████████████████████████████████████             ]  74%[██████████████████████████████████████            ]  75%[██████████████████████████████████████            ]  76%[██████████████████████████████████████            ]  77%[███████████████████████████████████████           ]  78%[████████████████████████████████████████          ]  79%[████████████████████████████████████████          ]  80%[████████████████████████████████████████          ]  81%[█████████████████████████████████████████         ]  82%[██████████████████████████████████████████        ]  83%[██████████████████████████████████████████        ]  84%[██████████████████████████████████████████        ]  85%[███████████████████████████████████████████       ]  86%[████████████████████████████████████████████      ]  87%[████████████████████████████████████████████      ]  88%[████████████████████████████████████████████      ]  89%[█████████████████████████████████████████████     ]  90%[██████████████████████████████████████████████    ]  91%[██████████████████████████████████████████████    ]  92%[██████████████████████████████████████████████    ]  93%[███████████████████████████████████████████████   ]  94%[████████████████████████████████████████████████  ]  95%[████████████████████████████████████████████████  ]  96%[████████████████████████████████████████████████  ]  97%[█████████████████████████████████████████████████ ]  98%[██████████████████████████████████████████████████]  99%[██████████████████████████████████████████████████] 100%                                                            
#> Calculating importance metrics for attribute-level: d3
#> [                                                  ]   1%[█                                                 ]   2%[██                                                ]   3%[██                                                ]   4%[██                                                ]   5%[███                                               ]   6%[████                                              ]   7%[████                                              ]   8%[████                                              ]   9%[█████                                             ]  10%[██████                                            ]  11%[██████                                            ]  12%[██████                                            ]  13%[███████                                           ]  14%[████████                                          ]  15%[████████                                          ]  16%[████████                                          ]  17%[█████████                                         ]  18%[██████████                                        ]  19%[██████████                                        ]  20%[██████████                                        ]  21%[███████████                                       ]  22%[████████████                                      ]  23%[████████████                                      ]  24%[████████████                                      ]  25%[█████████████                                     ]  26%[██████████████                                    ]  27%[██████████████                                    ]  28%[██████████████                                    ]  29%[███████████████                                   ]  30%[████████████████                                  ]  31%[████████████████                                  ]  32%[████████████████                                  ]  33%[█████████████████                                 ]  34%[██████████████████                                ]  35%[██████████████████                                ]  36%[██████████████████                                ]  37%[███████████████████                               ]  38%[████████████████████                              ]  39%[████████████████████                              ]  40%[████████████████████                              ]  41%[█████████████████████                             ]  42%[██████████████████████                            ]  43%[██████████████████████                            ]  44%[██████████████████████                            ]  45%[███████████████████████                           ]  46%[████████████████████████                          ]  47%[████████████████████████                          ]  48%[████████████████████████                          ]  49%[█████████████████████████                         ]  50%[██████████████████████████                        ]  51%[██████████████████████████                        ]  52%[██████████████████████████                        ]  53%[███████████████████████████                       ]  54%[████████████████████████████                      ]  55%[████████████████████████████                      ]  56%[████████████████████████████                      ]  57%[█████████████████████████████                     ]  58%[██████████████████████████████                    ]  59%[██████████████████████████████                    ]  60%[██████████████████████████████                    ]  61%[███████████████████████████████                   ]  62%[████████████████████████████████                  ]  63%[████████████████████████████████                  ]  64%[████████████████████████████████                  ]  65%[█████████████████████████████████                 ]  66%[██████████████████████████████████                ]  67%[██████████████████████████████████                ]  68%[██████████████████████████████████                ]  69%[███████████████████████████████████               ]  70%[████████████████████████████████████              ]  71%[████████████████████████████████████              ]  72%[████████████████████████████████████              ]  73%[█████████████████████████████████████             ]  74%[██████████████████████████████████████            ]  75%[██████████████████████████████████████            ]  76%[██████████████████████████████████████            ]  77%[███████████████████████████████████████           ]  78%[████████████████████████████████████████          ]  79%[████████████████████████████████████████          ]  80%[████████████████████████████████████████          ]  81%[█████████████████████████████████████████         ]  82%[██████████████████████████████████████████        ]  83%[██████████████████████████████████████████        ]  84%[██████████████████████████████████████████        ]  85%[███████████████████████████████████████████       ]  86%[████████████████████████████████████████████      ]  87%[████████████████████████████████████████████      ]  88%[████████████████████████████████████████████      ]  89%[█████████████████████████████████████████████     ]  90%[██████████████████████████████████████████████    ]  91%[██████████████████████████████████████████████    ]  92%[██████████████████████████████████████████████    ]  93%[███████████████████████████████████████████████   ]  94%[████████████████████████████████████████████████  ]  95%[████████████████████████████████████████████████  ]  96%[████████████████████████████████████████████████  ]  97%[█████████████████████████████████████████████████ ]  98%[██████████████████████████████████████████████████]  99%[██████████████████████████████████████████████████] 100%                                                            
#> Calculating importance metrics for attribute-level: d2
#> [                                                  ]   1%[█                                                 ]   2%[██                                                ]   3%[██                                                ]   4%[██                                                ]   5%[███                                               ]   6%[████                                              ]   7%[████                                              ]   8%[████                                              ]   9%[█████                                             ]  10%[██████                                            ]  11%[██████                                            ]  12%[██████                                            ]  13%[███████                                           ]  14%[████████                                          ]  15%[████████                                          ]  16%[████████                                          ]  17%[█████████                                         ]  18%[██████████                                        ]  19%[██████████                                        ]  20%[██████████                                        ]  21%[███████████                                       ]  22%[████████████                                      ]  23%[████████████                                      ]  24%[████████████                                      ]  25%[█████████████                                     ]  26%[██████████████                                    ]  27%[██████████████                                    ]  28%[██████████████                                    ]  29%[███████████████                                   ]  30%[████████████████                                  ]  31%[████████████████                                  ]  32%[████████████████                                  ]  33%[█████████████████                                 ]  34%[██████████████████                                ]  35%[██████████████████                                ]  36%[██████████████████                                ]  37%[███████████████████                               ]  38%[████████████████████                              ]  39%[████████████████████                              ]  40%[████████████████████                              ]  41%[█████████████████████                             ]  42%[██████████████████████                            ]  43%[██████████████████████                            ]  44%[██████████████████████                            ]  45%[███████████████████████                           ]  46%[████████████████████████                          ]  47%[████████████████████████                          ]  48%[████████████████████████                          ]  49%[█████████████████████████                         ]  50%[██████████████████████████                        ]  51%[██████████████████████████                        ]  52%[██████████████████████████                        ]  53%[███████████████████████████                       ]  54%[████████████████████████████                      ]  55%[████████████████████████████                      ]  56%[████████████████████████████                      ]  57%[█████████████████████████████                     ]  58%[██████████████████████████████                    ]  59%[██████████████████████████████                    ]  60%[██████████████████████████████                    ]  61%[███████████████████████████████                   ]  62%[████████████████████████████████                  ]  63%[████████████████████████████████                  ]  64%[████████████████████████████████                  ]  65%[█████████████████████████████████                 ]  66%[██████████████████████████████████                ]  67%[██████████████████████████████████                ]  68%[██████████████████████████████████                ]  69%[███████████████████████████████████               ]  70%[████████████████████████████████████              ]  71%[████████████████████████████████████              ]  72%[████████████████████████████████████              ]  73%[█████████████████████████████████████             ]  74%[██████████████████████████████████████            ]  75%[██████████████████████████████████████            ]  76%[██████████████████████████████████████            ]  77%[███████████████████████████████████████           ]  78%[████████████████████████████████████████          ]  79%[████████████████████████████████████████          ]  80%[████████████████████████████████████████          ]  81%[█████████████████████████████████████████         ]  82%[██████████████████████████████████████████        ]  83%[██████████████████████████████████████████        ]  84%[██████████████████████████████████████████        ]  85%[███████████████████████████████████████████       ]  86%[████████████████████████████████████████████      ]  87%[████████████████████████████████████████████      ]  88%[████████████████████████████████████████████      ]  89%[█████████████████████████████████████████████     ]  90%[██████████████████████████████████████████████    ]  91%[██████████████████████████████████████████████    ]  92%[██████████████████████████████████████████████    ]  93%[███████████████████████████████████████████████   ]  94%[████████████████████████████████████████████████  ]  95%[████████████████████████████████████████████████  ]  96%[████████████████████████████████████████████████  ]  97%[█████████████████████████████████████████████████ ]  98%[██████████████████████████████████████████████████]  99%[██████████████████████████████████████████████████] 100%                                                            
#> Calculating importance metrics for attribute-level: e2
#> [                                                  ]   1%[█                                                 ]   2%[██                                                ]   3%[██                                                ]   4%[██                                                ]   5%[███                                               ]   6%[████                                              ]   7%[████                                              ]   8%[████                                              ]   9%[█████                                             ]  10%[██████                                            ]  11%[██████                                            ]  12%[██████                                            ]  13%[███████                                           ]  14%[████████                                          ]  15%[████████                                          ]  16%[████████                                          ]  17%[█████████                                         ]  18%[██████████                                        ]  19%[██████████                                        ]  20%[██████████                                        ]  21%[███████████                                       ]  22%[████████████                                      ]  23%[████████████                                      ]  24%[████████████                                      ]  25%[█████████████                                     ]  26%[██████████████                                    ]  27%[██████████████                                    ]  28%[██████████████                                    ]  29%[███████████████                                   ]  30%[████████████████                                  ]  31%[████████████████                                  ]  32%[████████████████                                  ]  33%[█████████████████                                 ]  34%[██████████████████                                ]  35%[██████████████████                                ]  36%[██████████████████                                ]  37%[███████████████████                               ]  38%[████████████████████                              ]  39%[████████████████████                              ]  40%[████████████████████                              ]  41%[█████████████████████                             ]  42%[██████████████████████                            ]  43%[██████████████████████                            ]  44%[██████████████████████                            ]  45%[███████████████████████                           ]  46%[████████████████████████                          ]  47%[████████████████████████                          ]  48%[████████████████████████                          ]  49%[█████████████████████████                         ]  50%[██████████████████████████                        ]  51%[██████████████████████████                        ]  52%[██████████████████████████                        ]  53%[███████████████████████████                       ]  54%[████████████████████████████                      ]  55%[████████████████████████████                      ]  56%[████████████████████████████                      ]  57%[█████████████████████████████                     ]  58%[██████████████████████████████                    ]  59%[██████████████████████████████                    ]  60%[██████████████████████████████                    ]  61%[███████████████████████████████                   ]  62%[████████████████████████████████                  ]  63%[████████████████████████████████                  ]  64%[████████████████████████████████                  ]  65%[█████████████████████████████████                 ]  66%[██████████████████████████████████                ]  67%[██████████████████████████████████                ]  68%[██████████████████████████████████                ]  69%[███████████████████████████████████               ]  70%[████████████████████████████████████              ]  71%[████████████████████████████████████              ]  72%[████████████████████████████████████              ]  73%[█████████████████████████████████████             ]  74%[██████████████████████████████████████            ]  75%[██████████████████████████████████████            ]  76%[██████████████████████████████████████            ]  77%[███████████████████████████████████████           ]  78%[████████████████████████████████████████          ]  79%[████████████████████████████████████████          ]  80%[████████████████████████████████████████          ]  81%[█████████████████████████████████████████         ]  82%[██████████████████████████████████████████        ]  83%[██████████████████████████████████████████        ]  84%[██████████████████████████████████████████        ]  85%[███████████████████████████████████████████       ]  86%[████████████████████████████████████████████      ]  87%[████████████████████████████████████████████      ]  88%[████████████████████████████████████████████      ]  89%[█████████████████████████████████████████████     ]  90%[██████████████████████████████████████████████    ]  91%[██████████████████████████████████████████████    ]  92%[██████████████████████████████████████████████    ]  93%[███████████████████████████████████████████████   ]  94%[████████████████████████████████████████████████  ]  95%[████████████████████████████████████████████████  ]  96%[████████████████████████████████████████████████  ]  97%[█████████████████████████████████████████████████ ]  98%[██████████████████████████████████████████████████]  99%[██████████████████████████████████████████████████] 100%                                                            
#> Calculating importance metrics for attribute-level: e3
#> [                                                  ]   1%[█                                                 ]   2%[██                                                ]   3%[██                                                ]   4%[██                                                ]   5%[███                                               ]   6%[████                                              ]   7%[████                                              ]   8%[████                                              ]   9%[█████                                             ]  10%[██████                                            ]  11%[██████                                            ]  12%[██████                                            ]  13%[███████                                           ]  14%[████████                                          ]  15%[████████                                          ]  16%[████████                                          ]  17%[█████████                                         ]  18%[██████████                                        ]  19%[██████████                                        ]  20%[██████████                                        ]  21%[███████████                                       ]  22%[████████████                                      ]  23%[████████████                                      ]  24%[████████████                                      ]  25%[█████████████                                     ]  26%[██████████████                                    ]  27%[██████████████                                    ]  28%[██████████████                                    ]  29%[███████████████                                   ]  30%[████████████████                                  ]  31%[████████████████                                  ]  32%[████████████████                                  ]  33%[█████████████████                                 ]  34%[██████████████████                                ]  35%[██████████████████                                ]  36%[██████████████████                                ]  37%[███████████████████                               ]  38%[████████████████████                              ]  39%[████████████████████                              ]  40%[████████████████████                              ]  41%[█████████████████████                             ]  42%[██████████████████████                            ]  43%[██████████████████████                            ]  44%[██████████████████████                            ]  45%[███████████████████████                           ]  46%[████████████████████████                          ]  47%[████████████████████████                          ]  48%[████████████████████████                          ]  49%[█████████████████████████                         ]  50%[██████████████████████████                        ]  51%[██████████████████████████                        ]  52%[██████████████████████████                        ]  53%[███████████████████████████                       ]  54%[████████████████████████████                      ]  55%[████████████████████████████                      ]  56%[████████████████████████████                      ]  57%[█████████████████████████████                     ]  58%[██████████████████████████████                    ]  59%[██████████████████████████████                    ]  60%[██████████████████████████████                    ]  61%[███████████████████████████████                   ]  62%[████████████████████████████████                  ]  63%[████████████████████████████████                  ]  64%[████████████████████████████████                  ]  65%[█████████████████████████████████                 ]  66%[██████████████████████████████████                ]  67%[██████████████████████████████████                ]  68%[██████████████████████████████████                ]  69%[███████████████████████████████████               ]  70%[████████████████████████████████████              ]  71%[████████████████████████████████████              ]  72%[████████████████████████████████████              ]  73%[█████████████████████████████████████             ]  74%[██████████████████████████████████████            ]  75%[██████████████████████████████████████            ]  76%[██████████████████████████████████████            ]  77%[███████████████████████████████████████           ]  78%[████████████████████████████████████████          ]  79%[████████████████████████████████████████          ]  80%[████████████████████████████████████████          ]  81%[█████████████████████████████████████████         ]  82%[██████████████████████████████████████████        ]  83%[██████████████████████████████████████████        ]  84%[██████████████████████████████████████████        ]  85%[███████████████████████████████████████████       ]  86%[████████████████████████████████████████████      ]  87%[████████████████████████████████████████████      ]  88%[████████████████████████████████████████████      ]  89%[█████████████████████████████████████████████     ]  90%[██████████████████████████████████████████████    ]  91%[██████████████████████████████████████████████    ]  92%[██████████████████████████████████████████████    ]  93%[███████████████████████████████████████████████   ]  94%[████████████████████████████████████████████████  ]  95%[████████████████████████████████████████████████  ]  96%[████████████████████████████████████████████████  ]  97%[█████████████████████████████████████████████████ ]  98%[██████████████████████████████████████████████████]  99%[██████████████████████████████████████████████████] 100%                                                            
plot(vimp_estimates)

Supplying a single attribute-level, the same plot function will display the importance estimates with corresponding 95 percent confidence intervals:

plot(vimp_estimates, att_levels = "d3")
#> Plotting importance scores for single attribute-level (with 95 percent confidence intervals)

Finally, it is possible to estimate population IMCEs (pIMCEs) using pIMCE() This function requires a list of the marginal probabilities for each attribute in the population of interest, and can only be estimated for one attribute-level comparison at a time (due to the computational requirements):

fake_marginals <- list()
fake_marginals[["A"]] <- c("a1" = 0.33,"a2" = 0.33,"a3"=0.34)
fake_marginals[["B"]] <- c("b1" = 0.33,"b2" = 0.33,"b3" = 0.34)
fake_marginals[["C"]] <- c("c1" = 0.33,"c2" = 0.33, "c3" = 0.34)
fake_marginals[["D"]] <- c("d1" = 0.75,"d2" = 0.2,"d3" = 0.05)
fake_marginals[["E"]] <- c("e1" = 0.33,"e2" = 0.33,"e3" = 0.34)

# Reduced number of covariate data for sake of speed
fake_pimces <- pIMCE(covar_data = fake_data[fake_data$id1 %in% 1:3,
                                            c("id1","covar1","covar2")],
                     model = cj_model,
                     attribs = c("A","B","C","D","E"),
                     l = "E",
                     l_1 = "e2",
                     l_0 = "e1",
                     marginals = fake_marginals,
                     method = "bayes",
                     cores = 1)
#> Predicting covariate profile 1/30Predicting covariate profile 2/30Predicting covariate profile 3/30Predicting covariate profile 4/30Predicting covariate profile 5/30Predicting covariate profile 6/30Predicting covariate profile 7/30Predicting covariate profile 8/30Predicting covariate profile 9/30Predicting covariate profile 10/30Predicting covariate profile 11/30Predicting covariate profile 12/30Predicting covariate profile 13/30Predicting covariate profile 14/30Predicting covariate profile 15/30Predicting covariate profile 16/30Predicting covariate profile 17/30Predicting covariate profile 18/30Predicting covariate profile 19/30Predicting covariate profile 20/30Predicting covariate profile 21/30Predicting covariate profile 22/30Predicting covariate profile 23/30Predicting covariate profile 24/30Predicting covariate profile 25/30Predicting covariate profile 26/30Predicting covariate profile 27/30Predicting covariate profile 28/30Predicting covariate profile 29/30Predicting covariate profile 30/30

head(fake_pimces)
#>        pIMCE  pIMCE_lower pIMCE_upper    covar1 covar2 id1
#> 1 0.10005725 -0.009291694   0.2265699 0.7810672      1   1
#> 2 0.10005725 -0.009291694   0.2265699 0.7810672      1   1
#> 3 0.10005725 -0.009291694   0.2265699 0.7810672      1   1
#> 4 0.10005725 -0.009291694   0.2265699 0.7810672      1   1
#> 5 0.10005725 -0.009291694   0.2265699 0.7810672      1   1
#> 6 0.09944322 -0.010963876   0.2245041 0.8160509      0   2