Number of minutes we can stand to be in class

My subtitle

#This will not show up as a title

This is what 6 hashtags looks like

Here is a subtitle

but it won’t work. This should be the font for your essays

Here is how to create a chunk

Mac user: command + option + i Pc user: control + alt + i

minutes <- c(0,40,17,44,4,20,20,20,30,5,23,20,45,15,60,50,15,25,11,58,50,50,25,35,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5)

Find the average number of minutes

mean(minutes)
## [1] 24.4375

Find the max value

max(minutes)
## [1] 60

median

median(minutes)
## [1] 20

Create a histogram of minutes

hist(minutes)