Functions Flashcards
Which function pulls up the documentation for an inputted function?
help() or ?
Ex: help(my_func)
Ex: ?my_func
Which function reveals the arguments of an inputted function?
args()
Ex: args(my_func)
What is the function construct recipe?
my_func <- function(arg1, arg2) {
body
}
Ex:
triple <- function(x) {
3 * x
}
How does R figure out what a function should return?
The last line of the function is automatically returned.
We can also specify a return value by using return()
How can you set a default value in a function?
Using =
Ex:
my_func <- function(a, b = 1) {
body
}
What are R packages?
Bundles of code, data, documentation, and tests that are easy to share with others.
What function installs the inputted package?
install.packages()
Ex: install.packages(“my_package”)
What is CRAN (Comprehensive R Archive Network)?
A repository where thousands of packages are available.
What is a search list?
A list of packages and environments that R looks through to find a variable or function you want to use.
What function displays the search list?
search()
Which function adds the inputted package to the search list?
library()
Ex: library(“my_package”)