infer {tableschema.r} | R Documentation |
Infer source schema
Description
Given data source and headers infer will return a Table Schema based on the data values.
Usage
infer(source, options = list())
Arguments
source |
data source, one of:
|
options |
any |
Value
Schema descriptor
Examples
# list of lists data source
source = list(
list("id"= 1,
"age"= 39,
"name"= "Paul"),
list("id"= 2,
"age"= 23,
"name"= "Jimmy"),
list("id"= 3,
"age"= 36,
"name"= "Jane"),
list("id"= 4,
"age"= 28,
"name"= "Judy"))
infer(source, options=list(headers=list("id","age","name")))$fields
[Package tableschema.r version 1.1.2 Index]