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
I find an issue when I use stri_encode in a 0-row tibble, below is the example code
library(dplyr)
library(stringi)
# no warning for length 0 character
x <- character(0)
stri_encode(x)
# warning in 0-row tibble
tibble(x = character(0)) %>% mutate(y = stri_encode(x))
The text was updated successfully, but these errors were encountered:
I find an issue when I use
stri_encode
in a 0-row tibble, below is the example codeThe text was updated successfully, but these errors were encountered: