更改 R 函数 plotrix::polar.plot() 中的符号大小
Change symbol size in R function plotrix::polar.plot()
有没有办法改变绘制的蓝色圆圈的大小:
library(plotrix)
polar.plot(1:36, seq(0,350,by=10), rp.type='s', point.col='blue')
希望这个函数有一些大小调整参数。
cex
似乎有效。尝试:
polar.plot(1:36, seq(0,350,by=10), rp.type='s', point.col='blue', cex = 3)
有没有办法改变绘制的蓝色圆圈的大小:
library(plotrix)
polar.plot(1:36, seq(0,350,by=10), rp.type='s', point.col='blue')
希望这个函数有一些大小调整参数。
cex
似乎有效。尝试:
polar.plot(1:36, seq(0,350,by=10), rp.type='s', point.col='blue', cex = 3)