read_spec {autoslider.core} | R Documentation |
Read yaml spec file
Description
Read yaml spec file and split according to filter lists
Usage
read_spec(spec_file = "spec.yml", metadata = NULL)
Arguments
spec_file |
'character'. Path to a yaml spec file |
metadata |
Metadata of study |
Value
An object of class 'spec' which is a 'list' where each element corresponds to one output, e.g. 't_dm_IT'.
Author(s)
- Liming Li ('Lil128') - Thomas Neitmann ('neitmant')
Examples
spec_file <- system.file("spec.yml", package = "autoslider.core")
## Take a look at the 'raw' content of the spec file
cat(readLines(spec_file)[1:24], sep = "\n")
## This is how it looks once read into R
spec <- read_spec(spec_file)
spec[1:3]
[Package autoslider.core version 0.2.2 Index]