merge_identifiers {diyar} | R Documentation |
Consolidate two group identifiers.
merge_ids(...)
## Default S3 method:
merge_ids(id1, id2, tie_sort = NULL, ...)
## S3 method for class 'pid'
merge_ids(id1, id2, tie_sort = NULL, ...)
## S3 method for class 'epid'
merge_ids(id1, id2, tie_sort = NULL, ...)
## S3 method for class 'pane'
merge_ids(id1, id2, tie_sort = NULL, ...)
... |
Other arguments |
id1 |
|
id2 |
|
tie_sort |
|
Groups in id1
are expanded by groups id2
.
links
; link_records
; episodes
; partitions
data(missing_staff_id)
dfr <- missing_staff_id
id1 <- links(dfr[[5]])
id2 <- links(dfr[[6]])
id1; id2; merge_ids(id1, id2)