Learn R Programming

erpR (version 0.2.0)

import.erp: import ERP data matrices from ASCII files (file extension should be specified). Data are imported as a list containing a data frame for each files imported.

Description

Import a series of .txt files with ERP data.

Usage

import.erp(filenamebase, numbers, ext=".txt", outname = "ERP_subj", fileinfo=FALSE, erplist = NULL, path=getwd())

Arguments

filenamebase
a string indicating the beginning of the name of the .txt files containing the ERP data.
numbers
the numbers (indicating the subjects) of the files to be imported.
ext
A string indicating file extension. Default is ".txt"
outname
a string indicating the beginning of the name of the objects that will be created.
fileinfo
If TRUE the function expects that in the first row of imported file there is a string indicating some information on the subject to be stored as a comment in the data frame created.
erplist
If an erplist is specified, then the imported files will be added to this erplist.
path
A string indicating the directory where the ASCII files are contained. Otherwise the files will be searched from the current working directory.

Value

A list containing several ERP data frames (one for each file imported).

Details

The optional argument fileinfo can be used to store some short information on the file. This is usually an ID for the Subject or the name of the original file from which the ASCII file has been exported (for example, if the files have been exported from eeglab, the name of the .set file). All objects that will be created from a file imported with import.erp will keep this information as a comment. Type comment(objectname) to access this information. If fileinfo=FALSE, the name of the file imported will be stored as a comment.

Examples

Run this code
## Not run: 
# ### The following is an example for importing a series of file
# ## named Exp1_word_subj1.txt, Exp1_word_subj2.txt, etc.
# 
# #Exp1 <- import.erp(filenamebase="Exp1_word_subj", numbers=1:20, 
# #	outname="Exp1_word_subj", ext=".txt" fileinfo = T, erplist=NULL)
# ## End(Not run)

Run the code above in your browser using DataLab