This is my first markdown file

Create my first chunk

# create a vector of minutes students can handle staying in class
minutes <- c(60,150,45,45,90,60,90,70,80,95)
# calculate the mean number of minutes
mean(minutes)
## [1] 78.5

create a boxplot

create a chunk shortcut: control Alt i

boxplot(minutes)