Learn R Programming

OpenRepGrid (version 0.1.15)

importScivesco: Import sci:vesco data files.

Description

Import sci:vesco data files.

Usage

importScivesco(file, dir = NULL)

Value

A single repgrid object in case one file and a list of repgrid objects in case multiple files are imported.

Arguments

file

Filename including path if file is not in current working directory. File can also be a complete URL. The fileformat is .dat.

dir

Alternative way to supply the directory where the file is located (default NULL).

References

Menzel, F., Rosenberger, M., Buve, J. (2007). Emotionale, intuitive und rationale Konstrukte verstehen. Personalfuehrung, 4(7), 91-99.

See Also

importGridcor(), importGridstat(), importScivesco(), importGridsuite(), importTxt(), importExcel()

Examples

Run this code
if (FALSE) {

# supposing that the data file scivesco.scires is in the current directory
file <- "scivesco.scires"
rg <- importScivesco(file)

# specifying a directory (arbitrary example directory)
dir <- "/Users/markheckmann/data"
rg <- importScivesco(file, dir)

# using a full path
rg <- importScivesco("/Users/markheckmann/data/scivesco.scires")
}

Run the code above in your browser using DataLab