WLJS LogoWLJS Notebook

Import

Import[source] imports data from source, returning a Wolfram Language representation of it.

Import[source, "fmt"] interprets the file as the specified format.

Examples

Import a CSV file:

data = Import["data.csv"]

Import specific elements:

Import["image.png", "Data"]

Import from URL:

Import["https://example.com/data.json"]

Please visit the official Wolfram Language Reference for more details.

On this page