stringfish
stringfish copied to clipboard
Possible name conflict with package sf
Nice work but take care of name conflict that could arise with sf spatial package that use the same naming convention as you (mainly sf_XXX names).
Hi Billy,
A little late response, but this is easy to fix. Instead of attaching 'stringfish' with library(stringfish), you can load without attaching it using, for example:
strf <- loadNamespace("stringfish")
or alternatively, import it using tinycodet::import_as(~ strf, "stringfish").
In either case, all the functions are imported inside the strf object, and you can use strf$function_name() to actually use the functions.
I hope this helps, and have a nice day :-)
Kind regards,
Tony