Recently Published
Analyzing Tire Pressure in NASCAR Race Cars
This document presents an in-depth analysis of the factors influencing tire pressure reduction in NASCAR race cars using R's Wilkinson-Rogers formula notation for statistical modeling. By leveraging the lm() function and creating various formula configurations, this analysis examines relationships between tire pressure and environmental, driver, and vehicle conditions. Key variables such as lap number, ambient and track temperatures, driver aggression level, and pit stops are modeled to determine their impact on tire pressure. The document also explores interactions between variables, higher-order effects, and the use of shorthand notation to streamline model creation. A summary table provides quick reference to different formula notations, offering insights into optimizing performance and safety on the track
Week 10 Data Dive - GLMs
Select an interesting binary column of data, or one which can be reasonably converted into a binary variable
This should be something worth modeling
Build a logistic regression model for this variable, using between 1-4 explanatory variables
Interpret the coefficients, and explain what they mean in your notebook
Using the Standard Error for at least one coefficient, build a C.I. for that coefficient, and translate its meaning
Understanding Matrices in R
An exploration of matrix creation and manipulation in R, focusing on how matrices are structured, created, and customized. This document covers essential matrix operations, including defining row and column dimensions, filling by row or column, and naming rows and columns for clarity. It also discusses handling matrices with different data types and how R coerces mixed types to a single class. Practical examples demonstrate creating numeric, logical, and character matrices, enhancing understanding of multidimensional data handling in R
Time Series Analysis of Air Passenger Data
This notebook demonstrates a beginner-friendly time series analysis using the built-in AirPassengers dataset in R. We’ll explore the data, visualize trends and seasonality, check for stationarity, apply transformations, and fit an ARIMA model to forecast future values.