Synthetic many-facet rating datasets in long format. All datasets include one row per observed rating.
Format
A data.frame with 5 columns:
- Study
Study label (
"Study1"or"Study2").- Person
Person/respondent identifier.
- Rater
Rater identifier.
- Criterion
Criterion facet label.
- Score
Observed category score.
Details
Available data objects:
mfrmr_example_coremfrmr_example_biasej2021_study1ej2021_study2ej2021_combinedej2021_study1_itercalej2021_study2_itercalej2021_combined_itercal
Naming convention:
study1/study2: separate simulation studiescombined: row-bind of study1 and study2_itercal: iterative-calibration variant
Use load_mfrmr_data() for programmatic selection by key.
Data dimensions
| Dataset | Rows | Persons | Raters | Criteria |
| study1 | 1842 | 307 | 18 | 3 |
| study2 | 3287 | 206 | 12 | 9 |
| combined | 5129 | 307 | 18 | 12 |
| study1_itercal | 1842 | 307 | 18 | 3 |
| study2_itercal | 3341 | 206 | 12 | 9 |
| combined_itercal | 5183 | 307 | 18 | 12 |
Score range: 1–4 (four-category rating scale).
Simulation design
Person ability is drawn from N(0, 1). Rater severity effects span
approximately -0.5 to +0.5 logits. Criterion difficulty effects span
approximately -0.3 to +0.3 logits. Scores are generated from the
resulting linear predictor plus Gaussian noise, then discretized into
four categories. The _itercal variants use a second iteration of
calibrated rater severity parameters.
Interpreting output
Each dataset is already in long format and can be passed directly to
fit_mfrm() after confirming column-role mapping.
Typical workflow
Inspect available datasets with
list_mfrmr_data().Load one dataset using
load_mfrmr_data().Fit and diagnose with
fit_mfrm()anddiagnose_mfrm().
Examples
data("ej2021_study1", package = "mfrmr")
head(ej2021_study1)
#> Study Person Rater Criterion Score
#> 1 Study1 P001 R08 Global_Impression 4
#> 2 Study1 P001 R08 Linguistic_Realization 3
#> 3 Study1 P001 R08 Task_Fulfillment 3
#> 4 Study1 P001 R10 Global_Impression 4
#> 5 Study1 P001 R10 Linguistic_Realization 3
#> 6 Study1 P001 R10 Task_Fulfillment 2
table(ej2021_study1$Study)
#>
#> Study1
#> 1842