Learn R Programming

synthpop (version 1.2-1)

syn.pmm: Synthesis by predictive mean matching

Description

Generates univariate synthetic data using predictive mean matching.

Usage

syn.pmm(y, x, xp, proper = FALSE, ...)

Arguments

y
an original data vector of length n.
x
a matrix (n x p) of original covariates.
xp
a matrix (k x p) of synthesised covariates.
proper
a logical value specifying whether proper synthesis should be conducted. See details.
...
additional parameters.

Value

k with synthetic values of y.

Details

Synthesis of y by predictive mean matching. The procedure is as follows:
  1. Fit a linear regression to the original data.
  2. Compute predicted values y.hat and ysyn.hat for the original x and synthesised xp covariates respectively.
  3. For each predicted value ysyn.hat find donor observations with the closest predicted values y.hat (ties are broken by random selection), randomly sample one of them and take its observed value y as the synthetic value.

The Bayesian version (for proper synthesis) includes additional step before computing predicted values:

See Also

syn