Learn R Programming

cape (version 3.1.2)

remove_ind: Remove individuals

Description

Remove individuals

Usage

remove_ind(data_obj, ind_to_remove = NULL, names_to_remove = NULL)

Value

an updated cape data object with specified individuals removed.

Arguments

data_obj

a Cape object

ind_to_remove

Indices of individuals to remove

names_to_remove

Names of individuals to remove Only one of ind_to_remove or names_to_remove should be specified.

Examples

Run this code
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