# NOT RUN {
stripchart(price ~ year, data = Housing, method = "stack",
pch = 1, col = c("red", "blue"))
# }
# NOT RUN {
library(ggplot2)
ggplot2::ggplot(data = Housing, aes(x = price, fill = year)) +
geom_dotplot() +
facet_grid(year ~ .) +
theme_bw()
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab