saveTable()

Output / Files

Description

Saves a Table to a CSV or TSV file.

Syntax

bool saveTable(std::string path, Table t, std::string ext)

Parameters

NameTypeDescription
pathstd::stringpath to write to
tTablethe table to save
extstd::string"csv" or "tsv" (default csv)

Returns

bool

Related

Under the Hood

Implementation in Processing.h / Processing.cpp:

Loading...