To Projects

IT 223 -- Project 2a

Part A: Analyzing a Univariate Dataset

Hints:

  1. To find outliers using Q1, Q3, and IQR:
  2. To find outliers using z-scores:
  3. To compute z-scores:
    > z <- (d - mean(d)) / sd(d)
    
  4. To plot the dataset d by observation number:
    > plot(1:length(d), d)