powered by
Remove individuals
remove_ind(data_obj, ind_to_remove = NULL, names_to_remove = NULL)
an updated cape data object with specified individuals removed.
a Cape object
Cape
Indices of individuals to remove
Names of individuals to remove Only one of ind_to_remove or names_to_remove should be specified.
if (FALSE) { #remove males covar_info <- get_covar(data_obj) male_idx <- which(covar_info$covar_table[,"sex"] == 1) data_obj <- remove_ind(data_obj, ind_to_remove = male_idx) }
Run the code above in your browser using DataLab