Skip to content

Commit

Permalink
Merge pull request #246 from petershintech/patch-6
Browse files Browse the repository at this point in the history
There is no example in the previous section.
  • Loading branch information
davidanthoff committed Feb 22, 2019
2 parents 872e741 + cdfcb97 commit e44e46a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/gettingstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Query.jl supports two different front-end syntax options: 1) standalone query op

## Standalone query operators

The standalone query operators are typically combined into more complicated queries via the pipe operator. The example from the previous section can also be written like this, using the `@filter` and `@map` standalone query operators:
The standalone query operators are typically combined into more complicated queries via the pipe operator. Probably the most simple example is a query that filters a DataFrame and returns a subset of its columns:

```jldoctest
using Query, DataFrames
Expand Down Expand Up @@ -37,7 +37,7 @@ q = @from <range variable> in <source> begin
end
```

Multiple `<query statements>` are separated by line breaks. Probably the most simple example is a query that filters a `DataFrame` and returns a subset of its columns:
Multiple `<query statements>` are separated by line breaks. The example from the previous section can also be written like this using LINQ style queryies:

```jldoctest
using Query, DataFrames
Expand Down

0 comments on commit e44e46a

Please sign in to comment.