powered by
build_quick_strata_project will create a project with the specified number of strata - num_strata, with the specified number of laminae
build_quick_strata_project
num_strata
num_laminae_per per stratum. The strata and laminae will be named stratum_1, stratum_2, etc. and s1_lamina_1, s1_lamina_2, etc.
num_laminae_per
stratum_1
stratum_2
s1_lamina_1
s1_lamina_2
build_quick_strata_project(project_path, num_strata = 1, num_laminae_per = 1)
invisible dataframe of the survey of the strata project.
A path to strata project folder.
Number of strata to create.
Number of laminae to create per stratum.
tmp <- fs::dir_create(fs::file_temp()) result <- build_quick_strata_project(tmp, 2, 2) dplyr::glimpse(result) main(tmp) fs::dir_delete(tmp)
Run the code above in your browser using DataLab