I get this plot out of my data
and I am trying to have the points sorted descendingly (fist = highest; last = lowest).I tried reorder as well as mutate with my code but with no success.
ggplot(my_data, aes(x = Team, y = Days)) +
geom_point(aes(color = factor(Country))) + facet_wrap( ~ Country, ncol = 2)
The data files (xls) looks like this:
Country Team Days
England Arsenal FC 1.495
England Aston Villa 851
England Brighton & Hove Albion 1.125
England Burnley FC 1.181
England Chelsea FC 1.061
England Crystal Palace 781
England Everton FC 1.275
Frankreich AS Monaco 714
Frankreich AS Saint-Étienne 859
Frankreich Angers SCO 809
Frankreich Dijon FCO 938
Frankreich FC Lorient 1.071
Frankreich FC Metz 717
Frankreich FC Nantes 856
Any idea how to code this? Thx!