split_stratum {splithalfr} | R Documentation |
Split a stratum into two parts
Description
Splits stratum
into two parts. For more information
about splitting options, and an extensive list of examples, see
get_split_indexes_from_stratum
.
Usage
split_stratum(stratum, ...)
Arguments
stratum |
(data frame, tibble, list, or vector) Stratum to split; dataframes and tibbles are counted and split by row. All other data types are counted and split by element |
... |
Arguments passed on to
|
Value
(list) List with two elements that contain each of the two parts of stratum split in two.
See Also
Other splitting functions:
apply_split_indexes_to_strata()
,
apply_split_indexes_to_stratum()
,
check_strata()
,
get_split_indexes_from_strata()
,
get_split_indexes_from_stratum()
,
split_df()
,
split_strata()
,
stratify()
Examples
# Split stratum odd-even
ds <- data.frame(condition = rep(c("a", "b"), each = 4), score = 1 : 8)
split_stratum(ds, method = "odd_even")