R/schema.R
unify_schemas.Rd
Combine and harmonize schemas
unify_schemas(..., schemas=list(...))
Schemas to unify
Alternatively, a list of schemas
ASchema with the union of fields contained in the inputs, orNULL if any ofschemas isNULL
Schema
NULL
schemas
a<-schema(b=double(), c=bool())z<-schema(b=double(), k=utf8())unify_schemas(a,z)#> Schema#> b: double#> c: bool#> k: string