Skip to content

Commit

Permalink
fix: add new line for each sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
Layalchristine24 committed May 13, 2024
1 parent df783b9 commit 6187710
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions posts/2024-03-29_rlang-glue/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,14 @@ editor_options:

*How can you create, transform and filter several variables in a function by using the glue syntax and rlang?*

The following example helps me to remind how to deal with the rlang and glue syntax. However, this is very complicated and this is intended to be a simple means of finding working ways of using the operator *curly-curly* (`{{ x }}`) and the *Walrus operator* for the *name injection* (`:=`) as well as the functions `englue` and `sym` in other use cases.
The following example helps me to remind how to deal with the rlang and glue syntax.
However, this is very complicated and this is intended to be a simple means of finding working ways of using the operator *curly-curly* (`{{ x }}`) and the *Walrus operator* for the *name injection* (`:=`) as well as the functions `englue` and `sym` in other use cases.

Please always try to find an easy way to solve your problem. If it is too complicated (like it is below), try to think again about how you can solve your problem in an easier way.
Please always try to find an easy way to solve your problem.
If it is too complicated (like it is below), try to think again about how you can solve your problem in an easier way.

You may want to look at the article sections about [indirection](https://dplyr.tidyverse.org/articles/programming.html#indirection) and [name injection](https://dplyr.tidyverse.org/articles/programming.html#name-injection). Additionally, you will find further information in the vignette about [dynamic dots](https://rlang.r-lib.org/reference/dyn-dots.html).
You may want to look at the article sections about [indirection](https://dplyr.tidyverse.org/articles/programming.html#indirection) and [name injection](https://dplyr.tidyverse.org/articles/programming.html#name-injection).
Additionally, you will find further information in the vignette about [dynamic dots](https://rlang.r-lib.org/reference/dyn-dots.html).

```{r}
my_mean <- function(data,
Expand Down

0 comments on commit 6187710

Please sign in to comment.