I am following a tutorial in Rbloggers and found the use of double colons, I looked online, but I couldn't find an explanation for their use. Here is an example of their use.
df <- dplyr::data_frame(
year = c(2015, NA, NA, NA),
trt = c("A", NA, "B", NA)
)
I understand it creates a data frame but I don't understand their purpose.
As you probably have looked up the help page by now usage of
::
helps to access the exact function from that specific package. When you loaddplyr
you probably got a message as follows..So, for instance, if you would like to use
intersect
function from dplyr or base package, you need to specify using the::
double colons. Usage will be as followsUpdate: Added additional explanation
Note: The sequence you load libraries determine the preferential access of the specific functions. Developers of different package tend to use same function names. However, when R encounters a function, it runs through the different libraries that particular session has loaded in a sequential manner. You can check the packages in a session by running
(.packages())
As you can see in my example session above,
tidyr
is the last library I loaded, which is r session 1st entry. So, when you use any function in your code , first it is searched intidyr
-> thendata.table
-> thendplyr
and so on, finally thebase
package is looked up. So, in this process when there is function name overlaps between packages the one which loaded the last masks the previous ones. To avoid this masking, you specify in R code where to look for the function. Hence, herebase::intersect
, will use the function from base library instead of thedplyr
. Alternatively, you can use to avoid loading of complete library. There are positives and negatives with this. Read the links and learn more.run and check the differences. Here are some resources for you to get an understanding.
Compare library(), require(), ::
Namespace
There may be multiple functions with the same name in multiple packages. The double colon operator allows you to specify the specific function you want: