Title explains the question. I know how to draw standard circles and elipses but have no idea how to plot an equation like that
Asked
Active
Viewed 44 times
1
-
You could find a bunch of coordinate pairs on various ways, but it's a lot easier to work in polar form, e.g. `ggplot(data.frame(x = c(0, 2*pi), y = 1), aes(x, y)) + geom_line() + coord_polar()` – alistaire May 11 '20 at 05:34
-
2Run `sos::findFn('ellipse plot')`, the first hit gets you to CRAN package [`PlaneGeometry`.](https://CRAN.R-project.org/package=PlaneGeometry). – Rui Barradas May 11 '20 at 06:15
-
Maybe this post helps: https://stackoverflow.com/q/41820683/12158757 – ThomasIsCoding May 11 '20 at 06:21