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) library(magrittr) library(dplyr) a <- data.frame(study = 1) b <- data.frame(study = 2) bind_rows(a, b) c(a$study, b$study) reconcile(list(a$study, b$study))


yamlet documentation built on Oct. 6, 2023, 9:07 a.m.