Symbols Flashcards

1
Q

~

A

The ~ is used to separate the dependent variable (response variable) from the independent variables (predictors) in formulas for statistical models like:

lm(), glm(), and others

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

Uses for $ symbol

$ - Accessing Columns in a Data Frame

A

A data frame is essentially a list of columns, and you can use $ to access a specific column by its name.

Access the ‘age’ column
data$age
# Output: 25 30 35

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

Uses for $ symbol

$ - Accessing Elements in a List

A

You can use $ to extract an element from a list by its name.

Access the ‘scores’ element
my_list$scores
# Output: 90 85 95

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

Uses for $ symbol

$ - Assigning Values

A

You can use $ to assign values to elements in a data frame or a list

my_list$new_element <- “New Value” # Add a new element to the list

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

Uses for $ symbol

$ - Using $ with Functions

A

$ can also be used in combination with functions to access specific elements of objects returned by those functions

model <- lm(mpg ~ wt, data = mtcars)
model$coefficients # Access the coefficients of the model

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

()

A

for grouping and invoking functions

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

[]

A

used for indexing or subsetting data structures

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