Sample binary vector
SampleMat2
is an internal biomod2 function that can help
user to sample a binary vector keeping the same proportion of 0s and 1s
than in the initial vector.
SampleMat2(ref, ratio, as.logi = FALSE)
ref |
a binary vector |
ratio |
the proportion of |
as.logi |
logical, if FALSE (default) id of cell will be return; if TRUE, logical vector of same length than ref will be return |
This function can be useful to help users to select a part of initial dataset that will be only kept for all validation procedures.
A list of 2 elements is returned :
- 'calibration' Ids of cells selected for calibration (1st sample)
- 'evaluation' Ids of cells selected for evaluation (1st sample complementary)
Damien Georges
a <- sample(c(0,1),100, replace=TRUE) SampleMat2(ref=a, ratio=0.7)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.