|
|
|
|
|
by mjburgess
1692 days ago
|
|
Does the R code, for eg., SQLite, actually build an SQL query? This just looks like a tidyverse library comparison. I'd expect a benchmark using their own libs, rather than assuming tidyverse will have an optimal way of querying them. |
|
The fact that ´tbl´ in the beginning is called with a connection, ensures that all the following functions don't execute on a dataframe, but instead builds up a query.
R, kinda like Julia, executes different versions of a function, depending on the type of the first parameter.
From an API point of view, I think it is absolutely ingenious!