Some package names can be quite long, and it is often safer to refer to package objects using the fully qualified name (long_package_name::package_object
) rather than attaching it using library(long_package_name)
.
Is there a way to assign an alias short_name
to the package long_package_name
, so that you can then use short_name::package_object
?
Thanks!