pub fn load_json_to_datatable<P: AsRef<Path>>(
path: P,
table_name: &str,
) -> Result<DataTable>Expand description
Load a JSON file into a DataTable.
Accepts either a JSON array of objects ([{...}, {...}]) or JSONL
(one JSON object per line). Format is auto-detected.