dfr to-jsonl
for dataframe
Saves dataframe to a JSON lines file.
Signature
> dfr to-jsonl (file)
Parameters
file
: file path to save dataframe
Input/output types:
input | output |
---|---|
any | any |
Examples
Saves dataframe to JSON lines file
> [[a b]; [1 2] [3 4]] | dfr into-df | dfr to-jsonl test.jsonl
Tips: Dataframe commands were not shipped in the official binaries by default, you have to build it with --features=dataframe
flag