Hello! My name is Anni Liang, and I am delighted to welcome you to my R Markdown report. I am currently a student at the University of Washington Bothell.
Below is a picture of my school
I am majoring in Applied Computing with a minor in Business Administration.
My goals for this course are to enhance my R programming skills, learn advanced statistical techniques, and gain hands-on experience in data analysis and visualization.
In addition to R, I have no experience with other analytic software.
One of the fundamental formulas I’ve learned is the mean formula: \[ \bar{x} = \frac{1}{n} \sum_{i=1}^{n} x_i \]
Here’s a simple R code snippet to calculate the mean of a numeric vector:
numbers <- c(1, 2, 3, 4, 5)
mean_value <- mean(numbers)
print(mean_value)
## [1] 3