You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
arrow-csv's infer_schema() returns the number of records read, along with the schema. This is useful information! arrow-json's infer_json_schema(), on the other hand, only returns the schema itself. It would be nice if it matched arrow-csv.
The text was updated successfully, but these errors were encountered:
Arguably it's less important in arrow-json than it is in arrow-csv, since with NDJSON you can just count the newline characters to get the row count. (As opposed to CSV, where quoted fields may contain newline characters without indicating a new row, so you really need to parse it to get the row count.)
arrow-csv's
infer_schema()
returns the number of records read, along with the schema. This is useful information! arrow-json'sinfer_json_schema()
, on the other hand, only returns the schema itself. It would be nice if it matched arrow-csv.The text was updated successfully, but these errors were encountered: