2015-10-24 75 views

回答

1

要生成MNAR數據,您可以使用數據生成過程,其中 缺失機制取決於未觀察到的數據。

# Generate the true data 
y1 <- rbinom(100, size=1, prob=0.1) 
# Generate the missing process. Depends on the "true" observed value 
r <- rbinom(length(y1), size=1, prob=c(.25, .1)[y1+1]) 
y <- y1 
y[r==1] <- NA