-
`dplyr::filter()` does not use variables in the global environment when doing logical comparisons when the variable is named the same thing as a column name. For instance, in this example below I woul…
-
Hey Eugene, I was wondering (out of sheer curiosity) if it is possible to implement Javascript's syntax for anonymous function in R and stumbled upon your package. It seems to be very cool!
Do you …
-
I think it would be useful to add an example under section [2.2 Spacing](http://style.tidyverse.org/syntax.html#spacing) on how spacing should be done around `!!!` and `!!`. In the [programming with d…
-
To better support parameterised tests. Should include #524
* `test_that()` needs to use `enquo()` and `test_code()` needs to use `eval_tidy()`. Might be root cause of #616. This will also need cha…
-
Because if it doesn't, you can't splice them. This makes it difficult to build lists of expressions for feeding to `invoke` and/or `do.call`.
For example:
``` r
f
-
I tried several emacs themes. Idris mode looks bad in almost all.
-
Ref: https://cran.r-project.org/web/packages/rlang/vignettes/tidy-evaluation.html
The ``!!`` operator would be especially useful when building up complicated commands.
This, for example, works i…
-
Thanks for a really useful package.
Looking for instance at `lookup::lookup(dplyr:::rename.data.frame)` (in dplyr 0.7.4 with new rlang NSE):
```
function (.data, ...)
{
vars
-
I am trying to use `enquo` in a `summary()` generic function. I'm having some trouble reproducing this - I know this is a red flag - but perhaps there is something missing about how I understand how t…
-
```
expect_true_( ~some_function( .(arg1), arg2 ) )
```
would show `Not true: some_function( , arg2 )` in case of a failure. Needs to generalize for all expectations, perhaps the necessary forwarders…