dplyr joins for phip_data
Usage
# S3 method for class 'phip_data'
left_join(x, y, ...)
# S3 method for class 'phip_data'
right_join(x, y, ...)
# S3 method for class 'phip_data'
inner_join(x, y, ...)
# S3 method for class 'phip_data'
full_join(x, y, ...)
# S3 method for class 'phip_data'
semi_join(x, y, ...)
# S3 method for class 'phip_data'
anti_join(x, y, ...)Examples
pd <- load_example_data()
joined <- dplyr::left_join(pd, pd, by = c("sample_id", "peptide_id"))