Data Wrangling Week 2

Hello!

My name is Nathan Hudson. I am a Cincinnati native, having grown up in Milford, OH, about 30 min northeast of the city.

Academic Background

I have completed my 3 bachelors degrees all at the University of Cincinnati (Philosophy, History, Mathematics), as well as my MS in Applied Economics. I am currently pursuing my PhD in Economics (obviously at UC.)

Professional Background

I have held many jobs while completing my studies. Jobs including:

Experience with R

I have used R quite a bit in my study of Econometrics as well as for other types of statistical work. Topics that include:

-Spatial Econometrics

-Bayesian Econometrics

-Time Series

-Panel Data

-Basic Regression

Experience with other analytic software

I have experience with Python, SQL, Excel, Stata, and most recently Julia.

Other Interests

Outside of my academic interests I am a lifelong soccer enthusiast, having played 3 years in college and I am a lifelong Manchester United supporter. I also enjoy playing (electric) guitar and gaming from time to time.

Equation

\[ E = mc^2 \]

In this equation: - \(E\) is the energy - \(m\) is the mass - \(c\) is the speed of light (\(3 \times 10^8\) m/s)

Code Chunk

# R code to calculate squares
x <- 1:10
y <- x^2
data.frame(Number = x, Square = y)
##    Number Square
## 1       1      1
## 2       2      4
## 3       3      9
## 4       4     16
## 5       5     25
## 6       6     36
## 7       7     49
## 8       8     64
## 9       9     81
## 10     10    100
# Plot the data
plot(x, y, type = "b", col = "blue",
     main = "Numbers and Their Squares",
     xlab = "Number",
     ylab = "Square")