openintro (version 2.0.0)

ukdemo: United Kingdom Demographic Data

Description

This data set comes from the Guardian's Data Blog and includes five financial demographic variables.

Usage

ukdemo

Arguments

Format

A data frame with 12 observations on the following 6 variables.

region

Region in the United Kingdom

debt

Average regional debt, not including mortgages, in pounds

unemployment

Percent unemployment

house

Average house price, in pounds

pay

Average hourly pay, in pounds

rpi

Retail price index, which is standardized to 100 for the entire UK, and lower index scores correspond to lower prices

References

Guardian Data Blog

Examples

Run this code
# NOT RUN {
library(ggplot2)

ggplot(ukdemo, aes(x = pay, y = rpi)) +
  geom_point() +
  labs(x = "Average hourly pay", y = "Retail price index")

# }

Run the code above in your browser using DataLab