I am working on some country specific information and right now, my data looks like this:
score country code prev.score
1 Brazil BRA 5
2 Singapore SIN 3
3 France FRA 4
How do I convert the country to be the focal point of the data, Ideally to look like this:
Score Code prev.score
Brazil 1 Bra 5
Singapore 2 SIN 3
France 3 FRA 4
Thank you.