writing: Hypothetical writing prompt example

Description Usage Format Source Examples

Description

This is a hypothetical data set to demonstrate a two facet cross design for generalizability theory. The design is an S X W X R design, a student by writing prompt by rater design. See chapter 3 of "Using R for Educational and Psychological Measurement" for more details.

Usage

1

Format

A data frame with 100 rows and 4 variables:

student

The student identifier

prompt

The writing prompt identifier. There were five prompts

rater

The rater identifier. There were two raters.

score

Student score on the writing prompt. Ranged from 4 - 100, with a maximum score of 100.

Source

Desjardins, C. D. & Bulut, O. (2017). Using R for Educational and Psychological Measurement.

Examples

1
2
3
library(lme4)
two.facet <- lmer(scores ~ (1 | students) + (1  | prompts) + (1 | raters) + (1 | students:prompts) +  (1 | students:raters) + (1 | prompts:raters), data = writing)
gstudy(two.facet)

cddesja/hemp documentation built on April 7, 2021, 9:24 p.m.