#Boxplot between country and points, reordered by median of points. Center aligning the Title of the boxplot
ggplot(select_points,aes(x=reorder(country,points,median),y=points))+geom_boxplot(aes(fill=country))+xlab("Country")+ylab("Points")+ggtitle("Distribution of Top 10 Wine Producing Countries")+theme(plot.title=element_text(hjust=0.5))
#Filter by countries that do not appear on the selected_countries dataset