1

Is there a way to change the size of the plotted blue circles produced by:

library(plotrix)
polar.plot(1:36, seq(0,350,by=10), rp.type='s', point.col='blue')

Hopefully, there is some sizing parameter to this function.

enter image description here

Oleg Melnikov
  • 3,080
  • 3
  • 34
  • 65

1 Answers1

2

cex seems to work. Try:

polar.plot(1:36, seq(0,350,by=10), rp.type='s', point.col='blue', cex = 3)
d.b
  • 32,245
  • 6
  • 36
  • 77