#Reflection Questions

How was the install process?, Anything I should know for future students?

The install process was a little tricky to understand especially on a mac user you had to ensure you were downloading the right software. I would maybe show videos on what software that mac users should download..

Have you used any statistical software before? I have never #Install New Packages

#install.packages("psych")
#install.packages("psychTools")

calling packages to use in file

library("psych")
library("psychTools")

#call in sample data

data("epi.bfi")
summary("epi.bfi")
##    Length     Class      Mode 
##         1 character character

#Run the histogram and mean

hist(epi.bfi$bdi)

mean(epi.bfi$bdi)
## [1] 6.779221

Including Plots

You can also embed plots, for example:

Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.