makeRepgrid: Make a new repgrid object.

View source: R/repgrid-basicops.r

makeRepgridR Documentation

Make a new repgrid object.

Description

The function creates a repgrid object from scratch. A number of parameters have to be defined in order to make a new grid (see parameters).

Usage

makeRepgrid(args)

Arguments

args

Arguments needed for the construction of the grid (list). These include name followed by a vector containing the element names. l.name followed by a vector with the left construct poles. r.name followed by a vector with the right construct poles. scores followed by a vector containing the rating scores row wise.

Value

NULL

Examples

## Not run: 

# make list object containing the arguments
args <- list(
  name = c("element_1", "element_2", "element_3", "element_4"),
  l.name = c("left_1", "left_2", "left_3"),
  r.name = c("right_1", "right_2", "right_3"),
  scores = c(
    1, 0, 1, 0,
    1, 1, 1, 0,
    1, 0, 1, 0
  )
)
# make grid object
x <- makeRepgrid(args)
x

## End(Not run)


markheckmann/OpenRepGrid documentation built on April 14, 2024, 8:15 a.m.