John Mount has a new introduction to rquery:
rquery
is a data wrangling system designed to express complex data manipulation as a series of simple data transforms. This is in the spirit ofR
’sbase::transform()
, ordplyr
’sdplyr::mutate()
and uses a pipe in the style popularized inR
withmagrittr
. The operators themselves follow the selections in Codd’s relational algebra, with the addition of the traditionalSQL
“window functions.” More on the background and context ofrquery
can be found here.The
R
/rquery
version of this introduction is here, and thePython
/data_algebra
version of this introduction is here.
Check it out.