如何为ggplot中的每个点使用不同的形状

时间:2013-02-06 01:54:15

标签: r plot ggplot2 visualization

我正在绘制一个4维数据集。在x轴和y轴之外,我想用不同宽度和高度的矩形表示第3和第4维度。我可以使用ggplot执行此操作吗?感谢。

enter image description here

2 个答案:

答案 0 :(得分: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()

enter image description here

答案 1 :(得分:4)

你可以尝试这样的事情。我用

  1. geom_point,shape = 0,以模拟矩形
  2. geom_rect创建以点为中心的ractangle
  3. 这里是我的数据(提供一些数据会更好)

    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()
    

    enter image description here