--- title: 'Lab4key' author: Renae L. Shrum --- ```{r} setwd('S:/Courses/stat-renaes/Stat404') dir() newemps=read.csv('newemps.csv',header=T) head(newemps) attach(newemps) mean(Salary) median(Salary) var(Salary) sd(Salary) length(Salary) summary(Salary) install.packages("pastecs") # if you have not installed it yet library(pastecs) stat.desc(Salary,norm=T,basic=T) ``` ---