Learn R Programming

fsia (version 1.1.1)

resp2scores: Convert Responses to Scores

Description

Assigns a weight to the responses.

Usage

resp2scores(obj, columns)

Arguments

obj

An object containing the data imported by function read.formscanner and weights added by function addweights.

columns

A vector containing which columns to use. Columns can be specified by name or number.

Value

The data frame data contained in obj with columns replaced by scored responses.

See Also

read.formscanner

Examples

Run this code
data(test)
data(key)
data(weights)
data(weights_multiple)

testk <- addkey(test, keydata = key)
testw <- addweights(testk, weightsdata = weights)
testwm <- addweights(test, weightsdata = weights_multiple)

# ASSIGN WEIGHTS TO RESPONSES
resps <- resp2scores(obj = testw, col =2:41)
resps[, 2:5]

# ASSIGN WEIGHTS TO RESPONSES (MULTIPLE WEIGHTS)
resps <- resp2scores(obj = testwm, col =2:41)
resps[, 2:5]

Run the code above in your browser using DataLab