Skip to content

Commit

Permalink
Merge pull request #62 from xiaodaigh/patch-1
Browse files Browse the repository at this point in the history
Concrete example of loading data using `load`
  • Loading branch information
davidanthoff authored Sep 9, 2019
2 parents 8295b69 + 34799fd commit 2b1061d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,13 @@ The ``load`` function also takes a number of parameters:
````julia
load(f::FileIO.File{FileIO.format"CSV"}; <arguments>...)
````

For example, to load a CSV file that doesn't have the extension ".csv", you need

```julia
load(File(format"CSV", "csv_file.txt"))
```

#### Arguments:

* ``delim``: the delimiter character
Expand Down

0 comments on commit 2b1061d

Please sign in to comment.