-
Using `$.data_source` from rlang
-
> As a Data Scientist, I want a suite of functions for performing common exploratory data analysis tasks so that I won't have to develop them from scratch.
Understanding that every project/dataset …
-
`select()` works with vector of variable names but I think it shouldn't. Let me show why:
```r
library(dplyr)
#>
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package…
-
The code is 10x slower with later versions of tibble and dplyr.
dplyr version 0.5.0 and tibble version 1.3.0 runtime: 12.005s
dplyr version 0.5.0.9005 and tibble version 1.3.1 runtime: 114.202s
…
-
As intended, `quos()` captures the calling environment:
```R
quos(x)
#> [[1]]
#>
#> ~x
#>
#> attr(,"class")
#> [1] "quosures"
```
But if you tidyeval a quosure of `quos()`, the calling…
egnha updated
6 years ago
-
In this [dplyr PR](https://github.com/tidyverse/dplyr/pull/3299#discussion_r161390932), it was proposed to change the rules for spacing after `!!` to be zero spaces and to remove the rule for `!!!` fr…
-
I generated a list of lists with purrr, containing lm objects.
I try to run plot_model() on a specific lm object. The output is at the bottom of this post.
For reference, this is how I ran my mode…
-
-
I think styler should make sure there is at least one space around the tilde operator.
``` r
library(styler)
style_text("lm(a~b, data = x)")
#> lm(a~b, data = x)
style_text("lm(a~b, data = x)")
…
-
Thanks for the great package!
I'm wondering if you'd consider adding support for the `.data` and `.env` pronouns from the tidyverse's new tidyeval framework. (`.data` says "look in the dataframe fo…