This function plots with ggplot2

savedGraphs(class = "renters", x = "income", y = "consumption",
  year = 2004)

Arguments

class
Owner or renter? Defaults to owner.
x
What goes on the x-axis?
y
What goes on the y-axis?
year
What year do you want to see?

Examples

savedGraphs("owners", "income", "consumption", 2005)
#> Error in cbind(exp2004owners$grossIncome, exp2004owners$totalConsumption): object 'exp2004owners' not found
savedGraphs("renters","consumption", "rent", 2013)
#> Error in cbind(exp2004owners$grossIncome, exp2004owners$totalConsumption): object 'exp2004owners' not found
savedGraphs("renters","income", "rent", 2010)
#> Error in cbind(exp2004owners$grossIncome, exp2004owners$totalConsumption): object 'exp2004owners' not found