Symbols Flashcards
~
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
Uses for $ symbol
$ - Accessing Columns in a Data Frame
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
Uses for $ symbol
$ - Accessing Elements in a List
You can use $ to extract an element from a list by its name.
Access the ‘scores’ element
my_list$scores
# Output: 90 85 95
Uses for $ symbol
$ - Assigning Values
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
Uses for $ symbol
$ - Using $ with Functions
$ 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
()
for grouping and invoking functions
[]
used for indexing or subsetting data structures