简体   繁体   中英

R: What do you call the :: and ::: operators and how do they differ?

I'm wondering how the functions of the :: and ::: operators differ in R.

However, I can't figure out what these operators are called and so a google or SO search has not proven helpful. I also get an error when I try ?:: in R.

So...

  1. What are the :: and ::: operators called?

  2. How do :: and ::: differ? (ie, what exactly does each do)?

It turns out there is a unique way to access help info for operators such as these colons: add quotations marks around the operator. [Eg, ?'::' or help(":::") ].

  • Also, instead of quotation marks, back-ticks (ie, ` ) also work.

Double Colon Operator and Triple Colon Operator

The answer to the question can be found on the help page for "Double Colon and Triple Colon Operators" (see here ).

For a package pkg, pkg::name returns the value of the exported variable name in namespace pkg, whereas pkg:::name returns the value of the internal variable name. The package namespace will be loaded if it was not loaded before the call, but the package will not be attached to the search path.

The difference can be seen by examining the code of each:

> `::`
function (pkg, name) 
{
    pkg <- as.character(substitute(pkg))
    name <- as.character(substitute(name))
    getExportedValue(pkg, name)
}
<bytecode: 0x00000000136e2ae8>
<environment: namespace:base>

> `:::`
function (pkg, name) 
{
    pkg <- as.character(substitute(pkg))
    name <- as.character(substitute(name))
    get(name, envir = asNamespace(pkg), inherits = FALSE)
}
<bytecode: 0x0000000013482f50>
<environment: namespace:base>

:: calls getExportedValue(pkg, name) , returning the value of the exported variable name in the package's namespace.

::: calls get(name, envir = asNamespace(pkg), inherits = FALSE) , searching for the object name in the Namespace environment of the package, and returning the value of the internal variable name .


So, what exactly is a namespace ?

This site does a good job of explaining the concept of namespaces in R. Importantly:

As the name suggests, namespaces provide “spaces” for “names”. They provide a context for looking up the value of an object associated with a name.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM