You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no way with separate wider delim to use the spaces from the end. The docs say to use separate_wider_regex(), but I wonder if the delim function could add an option.
Of course, a workaround is to construct a more complex regex and to use separate_wider_regex(), but that could become clunky?
dplyr::tibble(
col= c(
"A label with space 1.0 2.31",
"Non-space label 1.22 3.21"
)
) |>tidyr::separate_wider_delim(
cols=col,
delim="",
names= c("label", "n1", "n2"),
too_many="merge"
)
#> # A tibble: 2 × 3#> label n1 n2 #> <chr> <chr> <chr> #> 1 A label with space 1.0 2.31#> 2 Non-space label 1.22 3.21
I don't think it would go in too_many though, I think it would be a new argument to separate_wider_delim() like direction = c("forward", "backward") that specifies the direction to split by the delim in
Need to keep in mind that delim is allowed to be stringr::regex() and friends, which may complicate things.
DavisVaughan
changed the title
In separate_wider_delim(), could merge have an option for too_many = "merge_end"
In separate_wider_delim(), allow for specifying the direction to split by delim in
Oct 24, 2024
There is no way with separate wider delim to use the spaces from the end. The docs say to use
separate_wider_regex()
, but I wonder if the delim function could add an option.Of course, a workaround is to construct a more complex regex and to use
separate_wider_regex()
, but that could become clunky?Created on 2024-05-01 with reprex v2.1.0
The text was updated successfully, but these errors were encountered: