openintro (version 1.7.1)

student.housing: Community college housing (simulated data, 2015)

Description

These are simulated data and intended to represent housing prices of students at a college.

Usage

data("student.housing")

Arguments

Format

A data frame with 175 observations on the following variable.

price

Monthly housing price, simulated.

Examples

Run this code
# NOT RUN {
data(student.housing)
set.seed(5)
generate.student.housing <- data.frame(
    price = round(rnorm(175, 515, 65) + exp(rnorm(175, 4.2, 1))))
hist(student.housing$price, 20)
t.test(student.housing$price)
mean(student.housing$price)
sd(student.housing$price)
identical(student.housing, generate.student.housing)

# }

Run the code above in your browser using DataCamp Workspace