Skip to content

Commit

Permalink
Update README.jmd
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaodaigh authored Nov 27, 2020
1 parent ed4268c commit cd4d7dd
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions README.jmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,13 @@ DataFrames.jl does not define `filter(::AbstractDataFrame, arg)` and instead has
```julia
using DataConvenience
using DataFrames
using Chain: @chain

df = DataFrame(a=1:8)

@> df begin
@chain df begin
filter(:a => ==(1))
end

@as x df begin
filter(x, :a => ==(1))
end

```

Note: DataConvenience.jl used to re-export Lazy.jl's `@>` which it no longer does. Users are encouraged to use [Chain.jl](https://github.com/jkrumbiegel/Chain.jl) instead.
Expand Down

0 comments on commit cd4d7dd

Please sign in to comment.