I need to plot a circle centered at (0,0) in R. Then I would like to plot points in that circle specified in radius and degrees. Could anyone point me in the right direction for this task?
I need to plot a circle centered at (0,0) in R. Then I would
Share
In base graphics:
Note that at least one of the points will be on the border of the circle, so if you dont want this you would have replace of the
max(r)statments with something like1.1*max(r)