我正在尝试创建一个圆形图,其中各种角度的矢量来自不同角度的原点:类似下图,尽管它不必相同。我对circular
和circstats
进行了仔细研究,并学到了很多关于圆形图的知识,但没有发现任何与我正在寻找的东西相似的东西。我认为如果必须的话,我可以手工制作一些东西,但似乎有可能比我更有经验的人已经写了一些代码来做这件事。
这个数字来自Schmidt, 2007, Ecology 88(11):2793-2802,图2C。
答案 0 :(得分:10)
网格包非常强大,可用于组合和排列图形元素。
library(grid)
结果如下: 一些数据,我认为其余的数据是你的价值< 1
polar <- read.table(text ='
degree value
1 120 0.50
2 30 0.20
3 160 0.20
4 35 0.50
5 150 0.40
6 90 0.14
7 70 0.50
8 20 0.60',header=T)
## function to create axis label
axis.text <- function(col,row,text,angle){
pushViewport(viewport(layout.pos.col=col,layout.pos.row=row,just=c('top')))
grid.text(angle,vjust=0)
grid.text(text,vjust=2)
popViewport()
}
## function to create the arrows, Here I use the data
arrow.custom <- function(polar){
pushViewport(viewport(layout.pos.col=2,layout.pos.row=2))
apply(polar,1,function(x){
pushViewport(viewport(angle=x['degree']))
grid.segments(x0=0.5,y0=0.5,x1=0.5+x['value']*0.8,y1=0.5,
arrow=arrow(type='closed'),gp=gpar(fill='grey'))
popViewport()
})
popViewport()
}
## The global layout 3*3 matrix
lyt=grid.layout(3, 3,
widths= unit(c(4,15,4), "lines"),
heights=unit(c(4,15,4), "lines"),
just='center')
pushViewport(viewport(layout=lyt,xscale=2*extendrange(polar$value)))
## the central part : circles , arrows and axes
pushViewport(viewport(layout.pos.col=2,layout.pos.row=2))
grid.circle(r=c(0.5,0.3),gp = gpar(ltw=c(3,2),col=c('black','grey')))
arrow.custom(polar)
grid.segments(x0=0.5,y0=0,x1=0.5,y=1,gp=gpar(col='grey'))
grid.segments(x0=0,y0=0.5,x1=1,y=0.5,gp=gpar(col='grey'))
popViewport()
## the axis labels
axis.text(1,2,'Phragmites',expression(270 * degree))
axis.text(3,2,'Spartina',expression(90 * degree))
axis.text(2,1,'Increasing tropic position',expression(0 * degree))
axis.text(2,3,'Decreasing tropic position',expression(180 * degree))
答案 1 :(得分:8)
plotrix
包中的polar.plot
函数似乎可以执行您想要的操作。我还没想到如何在其中一条边的圆弧上添加虚线。
示例:强>
library(plotrix)
testlen<-c(rnorm(36)*2+5)
testpos<-seq(0,350,by=10)
polar.plot(testlen,testpos,main="Test Polar Plot",lwd=3,line.col=4)
#rotate degree
oldpar<-polar.plot(testlen,testpos,main="Test Clockwise Polar Plot",
start=180,clockwise=TRUE,lwd=3,line.col=4)
# reset everything
par(oldpar)
答案 2 :(得分:4)
我最终选择了radial.plot
中的plotrix
(虽然事实证明polar.plot
具有所有相同的功能 - 但是当我弄清楚它时,它的记录并不完整。我无法弄清楚如何做箭头,或沿着圆周的部分虚线但是对我的目的都不重要。由于某种原因,我无法得到第一个数据点,所以我插入了一个虚拟点。谢谢大家的帮助!
library(plotrix)
magnitude <- c(2.1, 2.3, 2.5, 1.5, 2.8, 2.7)
angle <- c(2.1, 2.6, -0.1, -2.6, 0.1, 0.4)
directionlabels <- c("more\nbenthic", "higher trophic",
"more\npelagic", "lower trophic")
colors <- c("black", "red", "green", "blue", "orange", "purple", "pink")
par(cex.axis=0.7)
par(cex.lab=0.5)
radial.plot(c(0, magnitude),
c(0, angle),
lwd=4, line.col=,
labels=directionlabels,
radial.lim = c(0,3), #range of grid circle
main="circular diagram!",
show.grid.label=1, #put the concentric circle labels going down
show.radial.grid=TRUE
)
答案 3 :(得分:2)
以下是使用my.symbols
以及TeachingDemos包中的ms.polygon
和ms.arrows
的方法:
plot(c(-2,2),c(-2,2), axes=FALSE, xlab='', ylab='', type='n', asp=1)
abline(v=0, col='lightgrey')
abline(h=0, col='lightgrey')
my.symbols(c(0,0),c(0,0),ms.polygon, xsize=c(2,4), lwd=c(1,2), n=360)
theta <- seq(pi/4, 3*pi/4, length=250)
lines( 2.03*cos(theta), 2.03*sin(theta), lwd=2, lty='dashed' )
lines( c(0,0), c(0,2), lty='dashed', lwd=2 )
a <- c(300,305,355,0,5,45,65)
l <- c(1.1, .5, .4,1,.6,.7,1.25)
my.symbols( rep(0,7), rep(0,7), ms.arrows, xsize=2, r=l, adj=0,
angle=pi/2 - pi/180*a )