data(RecreationDemand)
d <- RecreationDemand
datatable(d)
ggplot(RecreationDemand, aes(x = income, y = trips)) +
  geom_point(aes(color = userfee), size = 3) +
  geom_smooth(method = lm, se = T) +
  labs(title = "Biểu đồ phân tán các chuyến đi theo thu nhập",
       x = "Thu nhập hộ gia đình (1.000 USD)",
       y = "Số chuyến chèo thuyền")
## `geom_smooth()` using formula = 'y ~ x'