I want to do something similar to the answer in this post, but with geom_segment()
instead of geom_path()
because now I want to add arrows to my lines.
Setup:
example <- data.frame(r=c(5,4,3),theta=c(0.9,1.1,0.6))
is.linear.polar2 <- function(x) TRUE
coord_polar2 <- coord_polar(theta="y", start = 3/2*pi, direction=-1)
class(coord_polar2) <- c("polar2", class(coord_polar2))
myplot <- ggplot(example, aes(r, theta)) + geom_point(size=3.5) +
scale_x_continuous(breaks=seq(0,max(example$r)), lim=c(0, max(example$r))) +
scale_y_continuous(breaks=round(seq(0, 2*pi, by=pi/4),2), expand=c(0,0), lim=c(0,2*pi)) +
geom_text(aes(label=rownames(example)), size=4.4, hjust=0.5, vjust=-1)
myplot + coord_polar2 + geom_path()
I want a plot that looks like this, but with arrows in the direction of the next point in the sequence.
These are my attempts:
myplot + coord_polar2 +
geom_segment(data=example,aes(x=r, y=theta, xend=c(tail(r, n=-1), NA),
yend=c(tail(theta, n=-1), NA)),
arrow=arrow(length=unit(0.3,"cm"), type="closed"))
myplot + coord_polar(theta="y", start = 3/2*pi, direction=-1) +
geom_segment(data=example,aes(x=r, y=theta, xend=c(tail(r, n=-1), NA),
yend=c(tail(theta, n=-1), NA)),
arrow=arrow(length=unit(0.3,"cm"), type="closed"))