我想建立一个带有月份名称的字符值。我可以使用 提取月份名称today() >%> months()
,但只要将结果输入glue()
并开始使用占位符 ( .
),占位符后面的值就会重复。有人知道这里发生了什么吗?
library(lubridate)
library(glue)
library(magrittr)
# returns month name as character
today() %>%
months()
#> [1] "April"
# when piping into glue(), I get an unexpected output
today() %>%
months() %>%
glue("my_test_{.}")
#> Aprilmy_test_April
由reprex 包(v0.2.1)于 2019 年 4 月 4 日创建