R Terminology (Structure and Function of R) Flashcards

1
Q

object

A

a thing – like a number, a dataset, a summary statistic like a mean or standard deviation, or a statistical test. Objects come in many different shapes and sizes in R. There are simple objects like which represent single numbers, vectors (like our tattoos object above) which represent several numbers, more complex objects like dataframes which represent tables of data, and even more complex objects like hypothesis tests or regression which contain all sorts of statistical information.

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

comment

A

type “#”

then freely type within your script any information that will be helpful to you in navigating that script when you need to review it later.

VERY HELPFUL

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

function

A

a procedure that typically takes one or more objects as arguments (aka, inputs), does something with those objects, then returns a new object

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

object

scalar

A

a single value like a number or a name

Examples of numeric scalars
a <- 100
b <- 3 / 100
c <- (a + b) / b

can be either character or numeric

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

object

vector

A

a combination of several scalars stored as a single object. For example, the numbers from one to ten could be a vector of length 10, and the characters in the English alphabet could be a vector of length 26. Like scalars, vectors can be either numeric or character (but not both!).

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

types of objects

A

numeric objects use numbers only:
a <- 100
b <- 3 / 100
c <- (a + b) / b

character objects use text only:
d <- “ship”
e <- “cannon”
f <- “Do any modern armies still use cannons?”

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

script

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

project

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

console

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

environment

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

object

matrix

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

object

data frame

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