Specifies the splitting criterion. Basically there are three different options available - each with several modes - which are controlled by passing the corresponding character expression to the argument.
1) Using the rawscore for splitting into subsamples with the following modes: split = "median"
median raw score split - high score group and low score group; split = "mean"
mean raw score split - high score group and low score group.
Finaly split = "score"
that is splitting daten
into as many subsamples as there are raw score groups - discarding min and max (theoretical) score group - which matches the concept proposed by Andersen (1973).
2) Dividing the persons in daten
into subsamples with equal size by random allocation with the following modes: split = "random"
(which is equivalent to split = "random.2"
) divides persons into two subsamples with equal size. In general the number of desired subsamples must be expressed after the dot in the character expression - e.g. split = "random.6"
divides persons into 6 subsamples (with equal size) by random allocation etc.
3) The third option is using a manifest variable as a splitting criterion. In this case a vector with the same length as number of cases in daten
must be passed to the argument grouping the data into subsamples. This vector should be coded as "factor"
or a "numeric"
integer vector with min = 1.