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
In an interactive fiddle created with tutorial, I get the the message "Error: could not find function str_which":
> library("stringr")
> test_v <- c("abc", "def", "cbad")
> str_which(test_v, "a.")
Error: could not find function "str_which"
> str_detect(test_v, "a.")
[1] TRUE FALSE TRUE
>
Since the str_detect() function from the same package does not trigger an error, it appears that an old version of stringr is included on your server (str_which() was added to stringr in February 2017: https://stringr.tidyverse.org/news/index.html#new-features-1 )
The text was updated successfully, but these errors were encountered:
In an interactive fiddle created with
tutorial
, I get the the message "Error: could not find function str_which":Since the
str_detect()
function from the same package does not trigger an error, it appears that an old version of stringr is included on your server (str_which()
was added tostringr
in February 2017:https://stringr.tidyverse.org/news/index.html#new-features-1 )
The text was updated successfully, but these errors were encountered: