I have a dataset with 200 observations. I generated a sample without replacement of size 100 with the following commands:
library(car)
require(car)
(amostra1= some(dados,n=100,replace=F))
write.xlsx(amostra1,"C:/Users/../Desktop/amostra1.xlsx")
My interest is also in non-sampled observations. The question is: Which command (s) in the R should I use to get the not sampled observations?