View Source Scitree.Infer (scitree v0.1.0)
Link to this section Summary
Functions
Returns a list of {title, type, data}
-tuples.
Link to this section Functions
Returns a list of {title, type, data}
-tuples.
examples
Examples
iex> data = %{:id => [1, 2, 3], :title => ["a", "b", "c"]}
iex> Scitree.Infer.execute(data)
[{"id", :categorical, [1, 2, 3]},
{"title", :string, ["a", "b", "c"]}]