Introduction

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

Bothell

Major/Minor

I am majoring in Applied Computing with a minor in Business Administration.

Why I am interested in R

Goals for the Course

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.

Experience with Other Analytic Software

In addition to R, I have no experience with other analytic software.

Formual

One of the fundamental formulas I’ve learned is the mean formula: \[ \bar{x} = \frac{1}{n} \sum_{i=1}^{n} x_i \]

R code chunk

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