testyxm {glmfitmiss} | R Documentation |
Simulated Test Data – testyxm
Description
A test list data that returns a list called testyxm
with two components:
-
dataOriginal
: The original data set without missing values. -
dataMissing
: The data set with artificially introduced missing values.
Usage
data(testyxm)
Format
A list with the following components:
- dataOriginal
A data frame with several rows and columns representing various variables.
- dataMissing
A data frame with missing values corresponding to the same structure as
dataOriginal
.
Details
Simulated Test Data
This dataset is a list called testyxm
that contains two data frames: dataOriginal
and dataMissing
.
References
Pradhan, V., Nychka, D., and Bandyopadhyay, S. (2024). Beyond the Odds: Fitting Logistic Regression with Missing Data in Small Samples (submitted).
Examples
data(testyxm)
Fulldata <- testyxm$dataOriginal
Missdata <- testyxm$dataMissing
[Package glmfitmiss version 2.1.0 Index]