Output CSV
Output CSV
The Output CSV node exports a dataframe from your workflow as a downloadable CSV file.
What it does
- Takes a dataframe from an upstream node
- Writes it to a CSV file on the server
- Makes the file available for download
How to use it
- Add the node — click “Output CSV” in the Toolbar, then click on the canvas
- Connect an upstream node — drag an edge from an Input CSV or other data-producing node to this node’s input handle (top)
- Set the filename — enter a name ending in
.csv(e.g.results.csv) - Click Run — the data is written to CSV
Configuration
| Setting | Required | Description |
|---|---|---|
| Upstream connection | Yes | A node providing data (e.g. Input CSV, Mean / SD) |
| Filename | Yes | Output filename, must end with .csv |
| Comment | No | An annotation for the generated R code |
Output
After running, the Output tab shows a success message with the number of rows written:
Successfully wrote 150 rows to Downloads/results.csv
Generated R code
write.csv(my_data, "results.csv", row.names = FALSE)Tips
- The filename must end with
.csvand can only contain letters, numbers, spaces, underscores, hyphens, or dots - Make sure the upstream node has been run first — this node needs data to export
- You can have multiple Output CSV nodes in a workflow to export different datasets