Functions Flashcards

1
Q

Which function pulls up the documentation for an inputted function?

A

help() or ?

Ex: help(my_func)

Ex: ?my_func

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which function reveals the arguments of an inputted function?

A

args()

Ex: args(my_func)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the function construct recipe?

A

my_func <- function(arg1, arg2) {
body
}

Ex:
triple <- function(x) {
3 * x
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How does R figure out what a function should return?

A

The last line of the function is automatically returned.

We can also specify a return value by using return()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How can you set a default value in a function?

A

Using =

Ex:
my_func <- function(a, b = 1) {
body
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are R packages?

A

Bundles of code, data, documentation, and tests that are easy to share with others.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What function installs the inputted package?

A

install.packages()

Ex: install.packages(“my_package”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is CRAN (Comprehensive R Archive Network)?

A

A repository where thousands of packages are available.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a search list?

A

A list of packages and environments that R looks through to find a variable or function you want to use.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What function displays the search list?

A

search()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Which function adds the inputted package to the search list?

A

library()

Ex: library(“my_package”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly