infer | R Documentation |
Given data source and headers infer will return a Table Schema based on the data values.
infer(source, options = list())
source |
data source, one of:
|
options |
any |
Schema descriptor
# 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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.