简体   繁体   中英

Change symbol size in R function plotrix::polar.plot()

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.

在此处输入图片说明

cex seems to work. Try:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM