$,Response-method {irt} | R Documentation |
Get slots of the an Response-class
object.
Description
Get slots of the an Response-class
object.
Usage
## S4 method for signature 'Response'
x$name
Arguments
x |
An |
name |
Name of the parameter. Available values:
|
Value
See the 'name' argument above for possible return values.
Author(s)
Emre Gonulates
Examples
resp <- response(score = c(0, 1, 0), examinee_id = "Ex-412",
item_id = c("I1", "I2", "I3"),
raw_response = c("B", "D", "A"),
order = 1:3,
response_time = c(66, 23, 89),
misc = list(form = "A1",
operational = c(TRUE, TRUE, FALSE))
)
resp$score
resp$item_id
resp$examinee_id
resp$raw_response
resp$order
resp$response_time
resp$misc
resp$misc$form
resp$form
[Package irt version 0.2.9 Index]