Hello colleagues,
I am trying to plot the movie count for each country on the world map. Here is the dataset, I am using;
Here is the code I am using to create the map;
ggplot(country_joined, aes(x = long, y = lat, group = group, fill = movie_count)) +
geom_polygon(color = "white") +
scale_fill_gradient2(
name = "Movie Count",
low = "green",
high = "green",
guide = "colorbar",
breaks = pretty_breaks(n = 5)) +
labs(title="No. of Movies Produced in the Country")+
coord_fixed(1.3)
But the map I am getting is not showing the distribution for other countries with smaller movie counts. Can I kindly get hep how to modify the code so that we can see the colour distribution or other countries too. Help is appreciated.
