Publications by Avery Holloman

Understanding Matrices in R

02.11.2024

# Understanding Matrices in R # When I first encountered matrices in R, I was intrigued by how they offer a structured way to store data with two dimensions. Unlike vectors, which are limited to a single dimension, matrices open up possibilities for organizing and manipulating data in rows and columns. However, a matrix still has a lot in common w...

26 sym R (5346 sym/22 pcs) 1 tbl

Analyzing Tire Pressure in NASCAR Race Cars

02.11.2024

# Analyzing Tire Pressure in NASCAR: Using Formulas in R # In my analysis of tire pressure reduction in NASCAR race cars, I decided to leverage the Wilkinson-Rogers formula notation in R. This notation, particularly useful in statistical modeling, allows me to specify the relationships between different variables in the dataset, helping me underst...

33 sym R (12870 sym/29 pcs) 1 tbl

Plant Growth

02.11.2024

library(readxl) Plant_Growth_500_Rows <- read_excel("C:/Users/jacob/Downloads/Plant_Growth_500_Rows.xlsx") View(Plant_Growth_500_Rows) # Since I have already instealled "readxl" package, it is time to load library library(readxl) # Lets take a closer look into the structure of the dataset str(Plant_Growth_500_Rows) ## tibble [500 × 2] (S3: t...

10 sym R (1390 sym/6 pcs) 1 img