fsbrain (version 0.0.2)

read.md.subjects: Read subjects file

Description

Load a list of subjects from a subjects file, i.e., a simple text file containing one subject name per line.

Usage

read.md.subjects(subjects_file, header = FALSE)

Arguments

subjects_file,

string. The path to the file.

header,

logical. Whether the file starts with a header line. Defaults to FALSE.

Value

a vector of strings. The subject IDs.

See Also

Other metdata functions: read.md.demographics

Examples

Run this code
# NOT RUN {
   subjects_file = system.file("extdata", "subjects.txt", package = "fsbrain", mustWork = TRUE);
   subjects_list = read.md.subjects(subjects_file);

# }

Run the code above in your browser using DataCamp Workspace