Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/winvector/rquery
Data Wrangling and Query Generating Operators for R. Distributed under choice of GPL-2 or GPL-3 license.
https://github.com/winvector/rquery
Last synced: 28 days ago
JSON representation
Data Wrangling and Query Generating Operators for R. Distributed under choice of GPL-2 or GPL-3 license.
- Host: GitHub
- URL: https://github.com/winvector/rquery
- Owner: WinVector
- License: other
- Created: 2017-12-11T15:16:20.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2023-08-20T00:52:36.000Z (over 1 year ago)
- Last Synced: 2024-11-07T03:16:45.101Z (3 months ago)
- Language: HTML
- Homepage: https://winvector.github.io/rquery/
- Size: 27.4 MB
- Stars: 109
- Watchers: 17
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/rquery)](https://cran.r-project.org/package=rquery)
[![status](https://tinyverse.netlify.com/badge/rquery)](https://CRAN.R-project.org/package=rquery)# `rquery`
[`rquery`](https://winvector.github.io/rquery/) is a piped query generator based on [Codd's relational algebra](https://en.wikipedia.org/wiki/Relational_algebra) (updated to reflect lessons learned from working with [`R`](https://www.r-project.org), [`SQL`](https://en.wikipedia.org/wiki/SQL), and [`dplyr`]( https://CRAN.R-project.org/package=dplyr) at big data scale in production).
## Introduction
[`rquery`](https://github.com/WinVector/rquery) is a data wrangling system designed to express complex data manipulation as a series of simple data transforms. This is in the spirit of `R`'s `base::transform()`, or `dplyr`'s `dplyr::mutate()` and uses a pipe in the style popularized in `R` with `magrittr`. The operators themselves follow the selections in Codd's relational algebra, with the addition of the traditional `SQL` "window functions." More on the background and context of `rquery` can be found [here](https://github.com/WinVector/rquery/blob/master/Examples/old_readme/README.md).
The `R`/`rquery` version of this introduction is [here](https://github.com/WinVector/rquery/blob/main/Examples/Introduction/rquery_Introduction.md), and the `Python`/`data_algebra` version of this introduction is [here](https://github.com/WinVector/data_algebra/blob/main/Examples/Introduction/data_algebra_Introduction.ipynb).
In transform formulations data manipulation is written as transformations that produce new `data.frame`s, instead of as alterations of a primary data structure (as is the case with `data.table`). Transform system *can* use more space and time than in-place methods. However, in our opinion, transform systems have a number of pedagogical advantages.
In `rquery`'s case the primary set of data operators is as follows:
* `drop_columns`
* `select_columns`
* `rename_columns`
* `select_rows`
* `order_rows`
* `extend`
* `project`
* `natural_join`
* `convert_records` (supplied by the [`cdata` package](https://github.com/WinVector/cdata)).These operations break into a small number of themes:
* Simple column operations (selecting and re-naming columns).
* Simple row operations (selecting and re-ordering rows).
* Creating new columns or replacing columns with new calculated values.
* Aggregating or summarizing data.
* Combining results between two `data.frame`s.
* General conversion of record layouts (supplied by the [`cdata` package](https://github.com/WinVector/cdata)).
The point is: Codd worked out that a great number of data transformations can be decomposed into a small number of the above steps. `rquery` supplies a high performance implementation of these methods that scales from in-memory scale up through big data scale (to just about anything that supplies a sufficiently powerful `SQL` interface, such as PostgreSQL, Apache Spark, or Google BigQuery).We will work through simple examples/demonstrations of the `rquery` data manipulation operators.
## `rquery` operators
### Simple column operations (selecting and re-naming columns)
The simple column operations are as follows.
* `drop_columns`
* `select_columns`
* `rename_columns`
These operations are easy to demonstrate.We set up some simple data.
```{r}
d <- data.frame(
x = c(1, 1, 2),
y = c(5, 4, 3),
z = c(6, 7, 8)
)knitr::kable(d)
```For example: `drop_columns` works as follows. `drop_columns` creates a new `data.frame` without certain columns.
```{r}
library(rquery)
library(rqdatatable)drop_columns(d, c('y', 'z'))
```In all cases the first argument of a `rquery` operator is either the data to be processed, or an earlier `rquery` pipeline to be extended. We will take about composing `rquery` operations after we work through examples of all of the basic operations.
We can write the above in piped notation (using the [`wrapr` pipe](https://journal.r-project.org/archive/2018/RJ-2018-042/index.html) in this case):
```{r}
d %.>%
drop_columns(., c('y', 'z')) %.>%
knitr::kable(.)
```Notice the first argument is an explicit "dot" in [`wrapr` pipe notation](https://journal.r-project.org/archive/2018/RJ-2018-042/index.html).
`select_columns`'s action is also obvious from example.
```{r}
d %.>%
select_columns(., c('x', 'y')) %.>%
knitr::kable(.)
````rename_columns` is given as name-assignments of the form `'new_name' = 'old_name'`:
```{r}
d %.>%
rename_columns(.,
c('x_new_name' = 'x',
'y_new_name' = 'y')
) %.>%
knitr::kable(.)
```### Simple row operations (selecting and re-ordering rows)
The simple row operations are:
* `select_rows`
* `order_rows``select_rows` keeps the set of rows that meet a given predicate expression.
```{r}
d %.>%
select_rows(., x == 1) %.>%
knitr::kable(.)
```Notes on how to use a variable to specify column names in `select_rows` can be found [here](https://github.com/WinVector/rquery/blob/master/Examples/Substitution/Substitution.md).
`order_rows` re-orders rows by a selection of column names (and allows reverse ordering by naming which columns to reverse in the optional `reverse` argument). Multiple columns can be selected in the order, each column breaking ties in the earlier comparisons.
```{r}
d %.>%
order_rows(.,
c('x', 'y'),
reverse = 'x') %.>%
knitr::kable(.)
```General `rquery` operations do not depend on row-order and are not guaranteed to preserve row-order, so if you do want to order rows you should make it the last step of your pipeline.
### Creating new columns or replacing columns with new calculated values
The important create or replace column operation is:
* `extend`
`extend` accepts arbitrary expressions to create new columns (or replace existing ones). For example:
```{r}
d %.>%
extend(., zzz := y / x) %.>%
knitr::kable(.)
```We can use `=` or `:=` for column assignment. In these examples we will use `:=` to keep column assignment clearly distinguishable from argument binding.
`extend` allows for very powerful per-group operations akin to what [`SQL`](https://en.wikipedia.org/wiki/SQL) calls ["window functions"](https://en.wikipedia.org/wiki/SQL_window_function). When the optional `partitionby` argument is set to a vector of column names then aggregate calculations can be performed per-group. For example.
```{r}
shift <- data.table::shiftd %.>%
extend(.,
max_y := max(y),
shift_z := shift(z),
row_number := row_number(),
cumsum_z := cumsum(z),
partitionby = 'x',
orderby = c('y', 'z')) %.>%
knitr::kable(.)
```Notice the aggregates were performed per-partition (a set of rows with matching partition key values, specified by `partitionby`) and in the order determined by the `orderby` argument (without the `orderby` argument order is not guaranteed, so always set `orderby` for windowed operations that depend on row order!).
More on the window functions can be found [here](https://github.com/WinVector/rquery/blob/master/Examples/WindowFunctions/WindowFunctions.md). Notes on how to use a variable to specify column names in `extend` can be found [here](https://github.com/WinVector/rquery/blob/master/Examples/Substitution/Substitution.md).
### Aggregating or summarizing data
The main aggregation method for `rquery` is:
* `project`
`project` performs per-group calculations, and returns only the grouping columns (specified by `groupby`) and derived aggregates. For example:```{r}
d %.>%
project(.,
max_y := max(y),
count := n(),
groupby = 'x') %.>%
knitr::kable(.)
```Notice we only get one row for each unique combination of the grouping variables. We can also aggregate into a single row by not specifying any `groupby` columns.
```{r}
d %.>%
project(.,
max_y := max(y),
count := n()) %.>%
knitr::kable(.)
```Notes on how to use a variable to specify column names in `project` can be found [here](https://github.com/WinVector/rquery/blob/master/Examples/Substitution/Substitution.md).
### Combining results between two `data.frame`s
To combine multiple tables in `rquery` one uses what we call the `natural_join` operator. In the `rquery` `natural_join`, rows are matched by column keys and any two columns with the same name are *coalesced* (meaning the first table with a non-missing values supplies the answer). This is easiest to demonstrate with an example.
Let's set up new example tables.
```{r}
d_left <- data.frame(
k = c('a', 'a', 'b'),
x = c(1, NA, 3),
y = c(1, NA, NA),
stringsAsFactors = FALSE
)knitr::kable(d_left)
``````{r}
d_right <- data.frame(
k = c('a', 'b', 'q'),
y = c(10, 20, 30),
stringsAsFactors = FALSE
)knitr::kable(d_right)
```To perform a join we specify which set of columns our our row-matching conditions (using the `by` argument) and what type of join we want (using the `jointype` argument). For example we can use `jointype = 'LEFT'` to augment our `d_left` table with additional values from `d_right`.
```{r}
natural_join(d_left, d_right,
by = 'k',
jointype = 'LEFT') %.>%
knitr::kable(.)
```In a left-join (as above) if the right-table has unique keys then we get a table with the same structure as the left-table- but with more information per row. This is a very useful type of join in data science projects. Notice columns with matching names are coalesced into each other, which we interpret as "take the value from the left table, unless it is missing."
### General conversion of record layouts
Record transformation is "simple once you get it". However, we suggest reading up on that as a separate topic [here](https://github.com/WinVector/cdata).
## Composing operations
We could, of course, perform complicated data manipulation by sequencing `rquery` operations. For example to select one row with minimal `y` per-`x` group we could work in steps as follows.
```{r}
. <- d
. <- extend(.,
row_number := row_number(),
partitionby = 'x',
orderby = c('y', 'z'))
. <- select_rows(.,
row_number == 1)
. <- drop_columns(.,
"row_number")
knitr::kable(.)
```The above discipline has the advantage that it is easy to debug, as we can run line by line and inspect intermediate values. We can even use the [Bizarro pipe](https://win-vector.com/2017/01/29/using-the-bizarro-pipe-to-debug-magrittr-pipelines-in-r/) to make this look like a pipeline of operations.
```{r}
d ->.;
extend(.,
row_number := row_number(),
partitionby = 'x',
orderby = c('y', 'z')) ->.;
select_rows(.,
row_number == 1) ->.;
drop_columns(.,
"row_number") ->.;
knitr::kable(.)
```Or we can use the [`wrapr` pipe](https://journal.r-project.org/archive/2018/RJ-2018-042/index.html) on the data, which we call "immediate mode" (for more on modes please see [here](https://github.com/WinVector/rquery/blob/master/Examples/Modes/Modes.md)).
```{r}
d %.>%
extend(.,
row_number := row_number(),
partitionby = 'x',
orderby = c('y', 'z')) %.>%
select_rows(.,
row_number == 1) %.>%
drop_columns(.,
"row_number") %.>%
knitr::kable(.)
````rquery` operators can also act on `rquery` pipelines instead of acting on data. We can write our operations as follows:
```{r}
ops <- local_td(d) %.>%
extend(.,
row_number := row_number(),
partitionby = 'x',
orderby = c('y', 'z')) %.>%
select_rows(.,
row_number == 1) %.>%
drop_columns(.,
"row_number")cat(format(ops))
```And we can re-use this pipeline, both on local data and to generate `SQL` to be run in remote databases. Applying this operator pipeline to our `data.frame` `d` is performed as follows.
```{r}
d %.>%
ops %.>%
knitr::kable(.)
```And for `SQL` we have the following.
```{r}
raw_connection <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")
RSQLite::initExtension(raw_connection)
db <- rquery_db_info(
connection = raw_connection,
is_dbi = TRUE,
connection_options = rq_connection_tests(raw_connection))cat(to_sql(ops, db))
# clean up
DBI::dbDisconnect(raw_connection)
```For more `SQL` examples, please see [here](https://github.com/WinVector/rquery/tree/master/db_examples).
## Pipeline principles
What we are trying to illustrate above: there is a continuum of notations possible between:
* Working over values with explicit intermediate variables.
* Working over values with a pipeline.
* Working over operators with a pipeline.Being able to see these as all related gives some flexibility in decomposing problems into solutions. We have some more advanced notes on the differences in working modalities [here](https://github.com/WinVector/rquery/blob/master/Examples/Modes/Modes.md) and [here](https://github.com/WinVector/rquery/blob/master/Examples/Arrow/Arrow.md).
## Conclusion
`rquery` supplies a very teachable grammar of data manipulation based on Codd's relational algebra and experience with pipelined data transforms (such as `base::transform()`, `dplyr`, and `data.table`).
For in-memory situations `rquery` uses `data.table` as the implementation provider (through the small adapter package `rqdatatable`) and is routinely faster than any other `R` data manipulation system *except* `data.table` itself.
For bigger than memory situations `rquery` can translate to any sufficiently powerful `SQL` dialect, allowing `rquery` pipelines to be executed on PostgreSQL, Apache Spark, or Google BigQuery.
In addition the [`data_algebra`](https://github.com/WinVector/data_algebra) Python package supplies a nearly identical system for working with data in Python.
# BackgroundThere are many prior relational algebra inspired specialized query languages. Just a few include:
* [`Alpha`](https://en.wikipedia.org/wiki/Alpha_(programming_language)) ~1971.
* `ISBL` / Information system based language ~1973
* [`QUEL`](https://en.wikipedia.org/wiki/QUEL_query_languages) ~1974.
* [`IBM System R`](https://en.wikipedia.org/wiki/IBM_System_R) ~1974.
* [`SQL`](https://en.wikipedia.org/wiki/SQL) ~1974.
* `Tutorial D` ~1994.
* [`data.table`](https://rdatatable.gitlab.io/data.table/) ~2006.
* [`LINQ`](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/linq/) ~2007.
* [`pandas`](https://pandas.pydata.org) ~2008.
* [`dplyr`](https://dplyr.tidyverse.org) ~2014.
* [`Apache Calcite`](https://calcite.apache.org) ~2014.
`rquery` is realized as a thin translation to an underlying `SQL` provider. We are trying to put the Codd relational operators front and center (using the original naming, and back-porting `SQL` progress such as window functions to the appropriate relational operator).Some related work includes:
* [`data.table`](https://rdatatable.gitlab.io/data.table/)
* [`disk.frame`](https://github.com/DiskFrame/disk.frame)
* [`dbplyr`](https://dbplyr.tidyverse.org)
* [`dplyr`](https://dplyr.tidyverse.org)
* [`dtplyr`](https://github.com/tidyverse/dtplyr)
* [`maditr`](https://github.com/gdemin/maditr)
* [`nc`](https://github.com/tdhock/nc)
* [`poorman`](https://github.com/nathaneastwood/poorman)
* [`rqdatatable`](https://github.com/WinVector/rqdatatable)
* [`SparkR`]( https://CRAN.R-project.org/package=SparkR)
* [`sparklyr`](https://spark.rstudio.com)
* [`sqldf`](https://github.com/ggrothendieck/sqldf)
* [`table.express`](https://github.com/asardaes/table.express)
* [`tidyfast`](https://github.com/TysonStanley/tidyfast)
* [`tidyfst`](https://github.com/hope-data-science/tidyfst)
* [`tidyquery`](https://github.com/ianmcook/tidyquery)
* [`tidyr`](https://tidyr.tidyverse.org)
* [`tidytable`](https://github.com/markfairbanks/tidytable) (formerly `gdt`/`tidydt`)
* [`data_algebra`](https://github.com/WinVector/data_algebra)# Installing
To install `rquery` please try `install.packages("rquery")`.
# Note
`rquery` is intended to work with "tame column names", that is column names that are legitimate symbols in `R` and `SQL`.
The previous `rquery` introduction is available [here](https://github.com/WinVector/rquery/blob/master/Examples/old_readme/README.md).