@vijaypalmanit wrote:
Hi Friends,
I am using below two line of code to analyze my data in two range of salaries, so I have taken subset, can someone help me to combine these two line of code using facet_wrap or facet_grid or any other technique
ggplot(auto[auto$income<919400,],aes(type))+geom_bar(aes(fill=type))
ggplot(auto[auto$income>=919400,],aes(type))+geom_bar(aes(fill=type))
Posts: 1
Participants: 1