Learn R Programming

OpenRepGrid (version 0.1.16)

importGridsuite: Import Gridsuite data files.

Description

Import Gridsuite data files.

Usage

importGridsuite(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

http://www.gridsuite.de/

Walter, O. B., Bacher, A., & Fromm, M. (2004). A proposal for a common data exchange format for repertory grid data.Journal of Constructivist Psychology, 17(3), 247. tools:::Rd_expr_doi("doi:10.1080/10720530490447167")

See Also

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

Examples

Run this code
if (FALSE) {

# supposing that the data file gridsuite.xml is in the current directory
file <- "gridsuite.xml"
rg <- importGridsuite(file)

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

# using a full path
rg <- importGridsuite("/Users/markheckmann/data/gridsuite.xml")
}

Run the code above in your browser using DataLab