# This is data to be used in homework assignment 1. # Intro to R course; Notre Dame; Fall 2007 x1 <- c(1.1, -2.3, 2.5, 0.5, -3.2, -4, 5.2, -2.2, -2.2, 3) p1 <- c(0.1, 0.1, 0.05, 0.15, 0.2, 0.05, 0.1, 0.1, 0.05, 0.1) x2 <- c(5, 8, 2, 3.3, 5.6, 8.2, 4.4) f1 <- factor(c("M", "M", "F", "f", "f", "F", "m", "m", "M", "M", "F")) print("The variables defined here are x1, x2, p1 and f1")