Skip to content

Commit

Permalink
Fix typo in "Using the pipe syntax" examples
Browse files Browse the repository at this point in the history
The import of Dataframes was missing the "s" at the end.
  • Loading branch information
wongjoel authored Jul 10, 2019
1 parent c12802c commit 3736cf9
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 3736cf9

Please sign in to comment.