Beginner
R
Q37 / 100
Which symbol is used to call a function from a specific package without loading the whole package, e.g. dplyr's filter?
Correct! Well done.
Incorrect.
The correct answer is B) dplyr::filter()
B
Correct Answer
dplyr::filter()
Explanation
The "::" operator accesses an exported function from a specific package namespace without attaching the whole package via library().
Progress
37/100