Skip to content

Commit 8fd0873

Browse files
committed
Update README
1 parent 204be96 commit 8fd0873

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,14 @@ using ExcelFiles, DataFrame
7878
df = load("data.xlsx", "Sheet1") |> DataFrame
7979
````
8080

81+
To save an iterable table, one can use the following form:
82+
83+
````julia
84+
using ExcelFiles, DataFrame
85+
86+
df = # Aquire a DataFrame somehow
87+
88+
df |> save("output.xlsx")
89+
````
90+
8191
The pipe syntax is especially useful when combining it with [Query.jl](https://github.com/queryverse/Query.jl) queries, for example one can easily load an Excel file, pipe it into a query, then pipe it to the ``save`` function to store the results in a new file.

0 commit comments

Comments
 (0)