Reflection Questions

How was the R install process? Very tedious, I will need to make sure I am giving attention to detail when coding. Other than that it went okay. ** How was the course folder organization process?** Organizing in OneDrive was simple, but I need to finish setting up the way files save from R still. # Installing new packages

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

Calling Packages

library(psych)
library(psychTools)

Call in sample data “epi.bfi” from the psychTools package

data("epi.bfi")

Run the histogram and mean functions specifically on “bdi” variable

hist(epi.bfi$bdi)

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

This is the end of the First R Lab - we did it!