September 2018
Beginner to intermediate
140 pages
2h 52m
English
In this section, we'll generate some numbers and plot them as Cartesian and polar coordinates.
Let's begin by implementing the following steps:
t <- seq(0, 360, by=15).
r <- 2.
qplot(r,t)
qplot(r,t)+coord_polar(theta="y").
qplot(r,t)+coord_polar(theta="y")+scale_y_continuous(breaks=seq(0,360,30)). ...Read now
Unlock full access