I'm trying to recreate this type of graph with R, possible ggplot but not wedded to it.
mydata <- data.frame(Group = letters[1:5],
Distance = seq(1000, 5000, 1000),
Change = c(-10, 5, -20, 15, -30))
# Input the same origin point
mydata <- rbind(mydata, data.frame(Group = letters[1:5], Distance = 0, Change = 0))
ggplot(mydata, aes(x = Change, y = Distance, group = Group)) + geom_line() + coord_polar(theta = "y")
But I just end up with a spiral - and I'm not really sure where to go from here. I didn't know if I need to start using the angle and try and build x/y coordinates from that.