Combine and harmonize schemas
unify_schemas(..., schemas = list(...))
...
: Schema s to unifyschemas
: Alternatively, a list of schemasA Schema
with the union of fields contained in the inputs, or NULL
if any of schemas
is NULL
a <- schema(b = double(), c = bool()) z <- schema(b = double(), k = utf8()) unify_schemas(a, z)
Useful links