Skip to content

Commit 2b1061d

Browse files
authored
Merge pull request #62 from xiaodaigh/patch-1
Concrete example of loading data using `load`
2 parents 8295b69 + 34799fd commit 2b1061d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,13 @@ The ``load`` function also takes a number of parameters:
6969
````julia
7070
load(f::FileIO.File{FileIO.format"CSV"}; <arguments>...)
7171
````
72+
73+
For example, to load a CSV file that doesn't have the extension ".csv", you need
74+
75+
```julia
76+
load(File(format"CSV", "csv_file.txt"))
77+
```
78+
7279
#### Arguments:
7380

7481
* ``delim``: the delimiter character

0 commit comments

Comments
 (0)