Function Details

Read CSV

Returns a data table given a url to a csv file. If you want to upload a table, use the Upload Input node instead.

Outputs

This node outputs a table.

Example

Given the input:

https://example.com/age_and_income.csv

It will return the data in JSON String record format:

[{ "age": 31, "income": 30000 },
 { "age": 42, "income": 50000 },
 { "age": 25, "income": 25000}]

age income 31 30000 42 50000 25 25000