read_fs_table: Read Freesurfer Table Output

Description Usage Arguments Value Examples

View source: R/read_fs_table.R

Description

This function reads output from a Freesurfer table command, e.g. aparcstats2table, asegstats2table

Usage

1
read_fs_table(file, sep = NULL, stringsAsFactors = FALSE, header = TRUE, ...)

Arguments

file

(character path) filename of text file

sep

separator to override attribute of file, to pass to read.table.

stringsAsFactors

(logical) passed to read.table

header

Is there a header in the data

...

additional arguments to read.table

Value

data.frame from the file

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
if (have_fs()) {
   outfile = aparcstats2table(subjects = "bert",
                    hemi = "lh",
                    meas = "thickness")
   df = read_fs_table(outfile)
   seg_outfile = asegstats2table(subjects = "bert", meas = "mean")
   df_seg = read_fs_table(seg_outfile)
}
## Not run: 
### using the pipe
if (requireNamespace("magrittr", quietly = TRUE)) {
df_seg = asegstats2table(subjects = "bert", meas = "mean") %>% 
            read_fs_table
            }

## End(Not run)

freesurfer documentation built on Dec. 9, 2020, 1:07 a.m.