Does this answer your question? [What are the double colons (::) in R?](https://stackoverflow.com/questions/35240971/what-are-the-double-colons-in-r)
– AndrewGBDec 17 '21 at 23:03
1 Answers1
0
If you don't want to load a library, then you can make each function of a package explicit.
data(mtcars)
ggplot2::ggplot(mtcars) +
ggplot2::geom_point(ggplot2::aes(x = cyl, y = mpg))