Skip to content

Commit

Permalink
Merge pull request #56 from wongjoel/patch-1
Browse files Browse the repository at this point in the history
Fix typo in "Using the pipe syntax" examples
  • Loading branch information
davidanthoff authored Jul 10, 2019
2 parents c12802c + 3736cf9 commit 03dc201
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,15 @@ save(f::FileIO.File{FileIO.format"CSV"}, data; delim=',', quotechar='"', escapec
Both ``load`` and ``save`` also support the pipe syntax. For example, to load a CSV file into a ``DataFrame``, one can use the following code:

````julia
using CSVFiles, DataFrame
using CSVFiles, DataFrames

df = load("data.csv") |> DataFrame
````

To save an iterable table, one can use the following form:

````julia
using CSVFiles, DataFrame
using CSVFiles, DataFrames

df = # Aquire a DataFrame somehow

Expand Down

0 comments on commit 03dc201

Please sign in to comment.