FitBNEM function

Fit Bivariate Normal Regression Model via Expectation Maximization.

Fit Bivariate Normal Regression Model via Expectation Maximization.

Estimation procedure for bivariate normal regression models in which the target and surrogate outcomes are both subject to missingness.

FitBNEM( t, s, X, Z, sig = 0.05, b0 = NULL, a0 = NULL, sigma0 = NULL, maxit = 100, eps = 1e-06, report = TRUE )

Arguments

  • t: Target outcome vector.
  • s: Surrogate outcome vector.
  • X: Target model matrix.
  • Z: Surrogate model matrix.
  • sig: Type I error level.
  • b0: Initial target regression coefficient.
  • a0: Initial surrogate regression coefficient.
  • sigma0: Initial covariance matrix.
  • maxit: Maximum number of parameter updates.
  • eps: Minimum acceptable improvement in log likelihood.
  • report: Report fitting progress?

Returns

An object of class 'bnr' with slots containing the estimated regression coefficients, the target-surrogate covariance matrix, the information matrices for the regression and covariance parameters, and the residuals.

Details

The target and surrogate model matrices are expected in numeric format. Include an intercept if required. Expand factors and interactions in advance. Initial values may be specified for any of the target coefficient b0, the surrogate coefficient a0, or the target-surrogate covariance matrix sigma0.

  • Maintainer: Zachary McCaw
  • License: GPL-3
  • Last published: 2023-10-01

Useful links