Posts by Adriel Leão • 23 points
1 post
-
2
votes1
answer36
viewsQ: Graph ggplot R prints x-axis variables in non-cohesive charts when using facet_grid()
asia %>% filter(region %in% c("Western Asia and Middle East","Central Asia","East Asia")) %>% group_by(Country) %>% ggplot(aes(x = Country, y = FertRate, col = Country)) + geom_point() +…