Learn R Programming

pophelper (version 1.2.0)

runsToDfTess: Convert TESS cluster files to R dataframe.

Description

Takes one or more TESS cluster run files and converts each of them to separate dataframes.

Usage

runsToDfTess(files = NULL)

Arguments

files

A character or character vector of one or more TESS cluster run files. Use choose.files(multi = TRUE) to select interactively.

Value

If a single file is selected, a single dataframe is returned. If multiple files are selected, a list with multiple dataframes is returned.

Details

Use collectRunsTess() to collect TESS runs into one directory.

See Also

runsToDfStructure, runsToDfMatrix

Examples

Run this code
# NOT RUN {
tlist <- list.files(path=system.file("files/tess",package="pophelper"),full.names=TRUE)
#create a dataframe
runsToDfTess(tlist[1])

#create a list of dataframes
runsToDfTess(tlist)
# }

Run the code above in your browser using DataLab