saveTable()
Output / FilesDescription
Saves a Table to a CSV or TSV file.
Syntax
bool saveTable(std::string path, Table t, std::string ext)
Parameters
| Name | Type | Description |
|---|---|---|
| path | std::string | path to write to |
| t | Table | the table to save |
| ext | std::string | "csv" or "tsv" (default csv) |
Returns
boolRelated
Under the Hood
Implementation in Processing.h / Processing.cpp:
Loading...