From 3736cf940fc6ec21a1f2b457a7abe96be26295c3 Mon Sep 17 00:00:00 2001 From: Joel Wong Date: Wed, 10 Jul 2019 13:29:52 +1000 Subject: [PATCH] Fix typo in "Using the pipe syntax" examples The import of Dataframes was missing the "s" at the end. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f588b0f..2c1c8e2 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,7 @@ 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 ```` @@ -135,7 +135,7 @@ 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