Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

There is no example in the previous section. #246

Merged
merged 1 commit into from
Feb 22, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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