View source: R/bluehill_functions.R
bh_find_tests | R Documentation |
Starting from study_root
, grab the names of everything that looks like an Instron
specimen as defined by raw_regex
. The default is all RawData files under study_root
.
If only a sub-set of the sample files are needed, supply a regex to select just those.
for example, if there are several samples under study.root and we only want those for "bone",
use something like
bh_find_tests(study_root, raw_regex = ".*bone.*RawData.*\.csv")
Or better, gather all the file names and filter the returned list.
bh_find_tests(study_root, raw_regex = "")
study_root |
the path where to start searching for specimen RawData files. |
raw_regex |
defines what files to read. Defaults to all RawData files. |
A list with the full path name to each specimen file under study_root.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.