This will make a subtitle for my document

Text is black font

#if I don’t put a space after my hashtag

insert my code: make a chunk

windows: control alt i mac: command alt i

Create a vector of the data

minutes <- c(40, 40, -5, 0, 10, 20, 30, 6, 45, 30, 30, 2, 10, 35, 
             15, 50, 25, 30, 35, 45, 35, 8)

Calculate the 5-number summary

summary(minutes)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   -5.00   10.00   30.00   24.36   35.00   50.00

Create a histogram

hist(minutes)