powered by
survey_strata() will examine the .tomls in project_path provided and return a dataframe with the following information about the project:
survey_strata()
project_path
stratum_name: the name of the stratum
stratum_name
lamina_name: the name of the lamina
lamina_name
execution_order: the order in which the stratum-lamina-code combination will be executed
execution_order
script_name: the name of the script to be executed
script_name
script_path: the path to the script
script_path
This is based on the contents of the .toml files, everything else is "invisible" inside the strata project.
survey_strata(project_path)
dataframe housing the layout of your project based on the .tomls.
A path to strata project folder.
Other survey: survey_log(), survey_tomls()
survey_log()
survey_tomls()
tmp <- fs::dir_create(fs::file_temp()) build_quick_strata_project(tmp, 2, 2) survey_strata(tmp) fs::dir_delete(tmp)
Run the code above in your browser using DataLab