dfr to-jsonl for dataframe

Saves dataframe to a JSON lines file.

WARNING

Dataframe commands were not shipped in the official binaries by default, you have to build it with --features=dataframe flag

Signature

> dfr to-jsonl {flags} (file)

Parameters

  • file: file path to save dataframe

Input/output types:

inputoutput
anyany

Examples

Saves dataframe to JSON lines file

> [[a b]; [1 2] [3 4]] | dfr into-df | dfr to-jsonl test.jsonl