0

I am new to R, when reading functions documentation how do I interpret ::?

How do I actually read the syntax?

readxl::read_excel()

Not sure if in R studio I can find any information about

barbsan
  • 3,418
  • 11
  • 21
  • 28

1 Answers1

2

In R there are different packages available,
"readxl" is one of them.
When you install a package, you are ready to use its functionalities.
If you just need a sporadic use of a few functions or data inside the
package you can access them with the notation packagename::functionname().

For example, since you have installed the readxl package, you can explore one of its functionality called read_excel() to import/read excel sheet.

 Command to check what functions and data are contained in a package.  
 help(package = "packageName")
Aditya Dhanraj
  • 189
  • 1
  • 1
  • 12