我正在绘制一个 4 维数据集。在 x 轴和 y 轴之外,我想用不同宽度和高度的矩形来表示第 3 和第 4 维。我可以这样做ggplot
吗?谢谢。
问问题
791 次
2 回答
8
这是一种方法:
dd <- data.frame(x = (x <- 1:10),
y = x + rnorm(10), width = runif(10,1,2), height = runif(10,1,2))
ggplot(data = dd) +
geom_rect(aes(xmax = x + width/2, xmin = x - width/2,
ymax = y + height/2, ymin = y - height/2),
alpha =0.2, color = rgb(0,114,178, maxColorValue=256),
fill = rgb(0,114,178, maxColorValue=256)) +
coord_fixed() +
theme_bw()
于 2013-02-06T02:39:10.330 回答
4
你可以尝试这样的事情。我用
geom_point
shape = 0 模拟矩形geom_rect
创建以点为中心的 ractangle
这是我的数据(最好提供一些数据)
d=data.frame(x=seq(1,10),
y=seq(1,10),
width=rep(c(0.1,0.5),each =5),
height=rep(c(0.8,0.9,0.4,0.6,0.7),each =2))
ggplot(data = d) +
geom_rect(aes(xmax = x + width, xmin = x-width,
ymax = y+height, ymin = y - height),
color = "black", fill = NA) +
geom_point(mapping=aes(x=x, y=y,size=height/width),
color='red',shape=0)+
theme_bw()
于 2013-02-06T02:59:57.713 回答