import.erp: import ERP data matrices from ASCII files (file extension...

Description Usage Arguments Details Value Author(s) Examples

View source: R/import.erp.R

Description

Import a series of .txt files with ERP data.

Usage

1
2
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.

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.

Value

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

Author(s)

Giorgio Arcara

Examples

1
2
3
4
5
6
7
8
## 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)

erpR documentation built on May 2, 2019, 3:33 p.m.