I have a data set like this:
cars trucks suvs
1 2 4
3 5 4
6 4 6
4 5 6
9 12 16
I'm trying to draw a bar chart for this data. Currently, I can do it with barplot
:
barplot(as.matrix(autos_data), main="Autos",
ylab= "Total",beside=TRUE, col=rainbow(5))
Generating this graph:
So my questions are: Can I use ggplot2 to draw such a graph? Specifically - how do I use faceting or other options to split the graph by days of the week? If yes, how do I accomplish that? Additionally, how do I use facet to produce a different layout?
See Question&Answers more detail:os