reconcile.list: Reconcile Atttributes of List Members

View source: R/dvec.R

reconcile.listR Documentation

Reconcile Atttributes of List Members

Description

Reconciles attributes of list members. Recursively arbitrates list members pairwise, returning the accumulated attributes.

Usage

## S3 method for class 'list'
reconcile(x, ...)

Arguments

x

list

...

passed arguments

Value

list (of attributes)

Examples

library(magrittr)
library(dplyr)
a <- data.frame(study = 1) %>% decorate('study: [Study, [A: 1]]')
b <- data.frame(study = 2) %>% decorate('study: [Study, [B: 2]]')
bind_rows(a, b) %>% decorations
c(a$study, b$study)
reconcile(list(a$study, b$study))

bergsmat/yamlet documentation built on July 4, 2025, 11:22 p.m.