--- title: "Joint-Path EM" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Joint-Path EM} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r setup, include=FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.width = 7, fig.height = 4.5, message = FALSE, warning = FALSE ) ``` `VCMoE` provides two fitting engines. The default `local_grid_em` engine fits each grid point independently and aligns component labels afterward. The `joint_path_em` engine instead maintains one observation-level responsibility matrix across its outer EM loop. At each iteration it updates every local model from that shared path and then refreshes each observation from its nearest grid point. The engines share the same fitted-object and prediction interfaces. Joint-path EM is opt-in and the default behavior of `vcmoe_fit()` is unchanged. ## Fit a joint-path model ```{r packages} library(VCMoE) ``` ```{r fit} sim <- simulate_vcmoe_gaussian( n = 90, k = 2, seed = 21, separation = 1.7, scenario = "well_separated" ) fit <- vcmoe_fit( y ~ z1 | x1, data = sim$data, u = "u", k = 2, family = "gaussian", bandwidth = 0.40, u_grid = c(0.25, 0.50, 0.75), engine = "joint_path_em", control = list( maxit = 12, n_starts = 1, seed = 22, warn_ambiguous = FALSE ) ) fit$engine_id head(predict(fit, type = "posterior")) ``` Joint-path diagnostics include the selected start, outer iteration trace, and the number of observations assigned to each grid point. ```{r diagnostics} fit$diagnostics$joint_path_converged fit$diagnostics$joint_path_assignment tail(fit$diagnostics$joint_path_trace) ``` The trace's `objective` column is the sample-level nearest-grid log-likelihood. It is a diagnostic, not a monotonicity guarantee: the label-consistent M-step and nearest-grid responsibility update can decrease it. Convergence is therefore based on posterior and parameter deltas. ## Guardrails Runtime grows approximately with the number of observations, grid points, EM iterations, and starts. By default, joint-path EM rejects more than 100 grid points or a grid-to-observation ratio above 0.2. Set `control$allow_dense_u_grid = TRUE` only after explicitly accepting that cost. A grid close to `unique(u)` also produces a warning because it approaches one local model per observation. If no start converges by `control$maxit`, the fit is returned with an explicit warning so that its finite interim estimates can still be inspected. Treat such estimates as provisional and review `joint_path_trace` before inference. ## Inference and bandwidth selection Analytic confidence bands use an observed local-likelihood sandwich plug-in evaluated at the fitted coefficient arrays. For joint-path fits this is a local-curvature approximation, not the covariance of the complete finite-grid shared-path estimator. The returned metadata states that shared-path, label-selection, and finite-grid cross-grid responsibility uncertainty are not included and reports score imbalance. Parametric bootstrap refits, GLRT full and null fits, reduced fits, and bandwidth-selection refits preserve the selected engine. For joint-path GLRT, the constant-coefficient null uses a paper-inspired update: constrained local paths are replaced after every M-step by their mean weighted by nearest-grid observation-assignment counts. This is a projected estimator, not a generic constrained MLE. The statistic evaluates every observation once at its nearest grid point, which is a grid approximation to the sample-point criterion. Failed or nonconverged null fits are blocked. GLRT calibration defaults to `"none"`; request analytic calibration only as a documented approximation, or use engine-preserving parametric bootstrap calibration. ```{r inference, eval=FALSE} band <- vcmoe_confband(fit, strict = FALSE) boot <- vcmoe_bootstrap( fit, data = sim$data, B = 200, seed = 23 ) test <- vcmoe_glrt( fit, data = sim$data, test = "coefficient", coefficient_set = "expert", component = 1, term = "z1", calibration = "none" ) selection <- vcmoe_select_bandwidth( y ~ z1 | x1, data = sim$data, u = "u", family = "gaussian", bandwidth_grid = c(0.30, 0.40, 0.50), folds = 3, u_grid = c(0.25, 0.50, 0.75), engine = "joint_path_em" ) ``` Always inspect convergence, component sizes, label ambiguity, and null-fit diagnostics before interpreting inference from either engine.