繁体   English   中英

R:在地图上绘制圆形直方图/玫瑰图

[英]R: plot circular histograms/rose diagrams on map

我正在尝试在地图上的特定坐标上绘制玫瑰图/圆形直方图,类似于在包mapplots中在地图上绘制饼图。

以下是使用mapplots生成的示例(有关代码,请参见下文),我想用玫瑰图替换饼图

样例

程序包circular使我可以绘制玫瑰图,但无法将其与mapplots程序包集成。 对于实现此目的的替代软件包或代码有什么建议吗?

为回答代码制作地图的问题。 全部基于mapplots包。 我为地图下载了shapefile(我认为来自http://www.freegisdata.org/

library(mapplots)
library(shapefiles)

xlim = c(-180, 180)
ylim = c(-90, 90)

#load shapefile
wmap = read.shapefile ("xxx")

# define x,y,z for pies
x <- c(-100, 100)
y <- c(50, -50)
z1 <- c(0.25, 0.25, 0.5)
z2 <- c(0.5, 0.2, 0.3)
z <- rbind(z1,z2)
# define radii of the pies
r <- c(5, 10)

# it's easier to have all data in a single df

plot(NA, xlim = xlim, ylim = ylim, cex = 0.75, xlab = NA, ylab = NA)
draw.shape(wmap, col = "grey", border = "NA")
draw.pie(x,y,z,radius = r, col=c("blue", "yellow", "red"))
legend.pie (x = -160, y = -70, labels = c("0", "1", "2"), radius = 5,
bty = "n", cex = 0.5, label.dist=1.5, col = c("blue", "yellow", "red"))

然后可以使用legend.bubble添加饼图大小的图例

看一下这个例子 ,您可以使用Plotrixggplot2将地图作为背景绘制玫瑰图。 无论哪种情况,您都希望将这些图的多个覆盖在ggplot上易于实现的地图上,只需看一下示例即可。

我在Hmisc包中发现了subplot(),它似乎完全符合我的要求。 以下是我的解决方案(背景中没有地图,可以使用mapplots进行绘制)。 我愿意就如何改善这一点提出建议...

library(Hmisc)
library (circular)

dat <- data.frame(replicate(2,sample(0:360,10,rep=TRUE)))
lat <- c(50, -40)
lon <- c(-100, 20)

# convert to class circular
cir.dat <- as.circular (dat, type ='angles', units = 'degrees', template = 'geographic', modulo = 'asis', zero = 'pi/2', rotation = 'clock')

# function for subplot, plots relative frequencies, see rose.diag for how to adjust the plot
sub.rose <- function(x){
                nu <- sum(!is.na(x))
                de <- max(hist(x, breaks = (seq(0, 360, 30)), plot = FALSE)$counts)
                prop <- nu/de
                rose.diag(x, bins = 12, ticks = FALSE, axes = FALSE,
                radii.scale = 'linear',
                border = NA, 
                prop = prop,
                col = 'black'
                )
                }

plot(NA, xlim = xlim, ylim = ylim)
for(i in 1:length(lat)){
    subplot(sub.rose(cir.dat[,i]), x = lon[i], y = lat[i], size = c(1, 1))
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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