This is the title of my document

#This is NOT a way to make a title

Now I am going to collect data from my personal data

To create a code chunk: control+Alte+i

my name is sileshi taking a course on data science called data 110

mintes <- c(17,17,40,15,20,20,37,37,15,25,1000,50)

Let me do some statisical operations

mean(mintes)
## [1] 107.75
median(mintes)
## [1] 22.5
sd(mintes)
## [1] 281.2263

create histogram

hist(mintes)

## remove outlier

mintes2 <- c(17,17,40,15,20,20,37,37,15,25,50)

histogram of minutes2

hist(mintes2)