簡體   English   中英

添加自定義的x軸以繪制ggplot2和y軸

[英]Add a customized x-axis to plot ggplot2 and y-axis as well

我有以下代碼:

df=data.frame(time=as.factor(rep(0.5:9.5,each=10)),
              roi=rep(1:10,10),
              area=runif(100, 5.0, 7.5))

df$time=factor(df$time, levels=rev(levels(df$time)))  

ggplot(data=df, aes(x=factor(roi), y=time, fill = area)) + 
   theme_minimal() + coord_fixed(ratio=1) + 
   geom_tile(colour = NA, width = 1.5, height = 1) + 
   scale_fill_gradient(low="black",high="white")

現在,我想刪除x軸並添加一個新軸,以得到下面的預期圖。 x軸將被分為4個段的4個部分,分別為段1,段2,段3,段4的軸長的39%,23%,23%,15%。 有人可以解決這個問題嗎? 我感謝所有答復,並期待您的答復。

非常感謝Mark Heckmann對我的問題的有用回答。 我還要再問一件事。 我還想通過“ scale_y_discrete”修改y軸,代碼運行良好,但是y軸標簽不符合我的期望。 我運行的代碼是:

ggplot(data=df, aes(x=factor(roi), y=time, fill = area)) + theme_minimal() +coord_fixed(ratio=1) +geom_tile(colour = NA, width = 1.5, height = 1)+scale_fill_gradient(low="black",high="white") +scale_y_discrete(name="Time (min)",expand =c(0.01,0.1),breaks=c(1,2.5,5.0,7.5,10.0),labels=c(0,15,30,45,60))

非常感謝你!

在此處輸入圖片說明

這與不使用自定義批注雜點而獲得的效果一樣好。

library(ggplot2)
library(grid)
df=data.frame(time=as.factor(rep(0.5:9.5,each=10)),
              roi=rep(1:10,10),area=runif(100, 5.0, 7.5)) 
df$time=factor(df$time, levels=rev(levels(df$time)))
p1 <- ggplot(data=df, aes(x=factor(roi), y=time, fill = area)) + 
  theme_minimal() +coord_fixed(ratio=1) +
  geom_tile(colour = NA, width = 1.5, height = 1)+
  scale_fill_gradient(low="black",high="white") + 
  scale_x_discrete(breaks = c(4,6,8,10),
                   labels = paste0("Seg",1:4)) +
  theme(axis.title.x = element_blank(),
        axis.ticks.x = element_line(size =1),
        axis.text.x = element_text(hjust=c(2,1.5,1.5,1.5)),
        plot.margin = unit(c(2,0,2,0), "lines"))

如果要自定義繪制軸標簽和刻度線,請參見此處

您需要使用annotation_custom在繪圖區域之外進行繪制。

#### your plot

library(ggplot2)

g <- ggplot(data=df, aes(x=factor(roi), y=time, fill = area)) + 
  theme_minimal() + coord_fixed(ratio=1) +
  geom_tile(colour = NA, width = 1.5, height = 1) + 
  scale_fill_gradient(low="black",high="white") 

額外的代碼:

library(grid)

# remove axis 
g <- g +  theme(axis.title.x=element_blank(),
             axis.text.x=element_blank(),
              axis.ticks.x=element_blank()) +
          scale_x_discrete(expand = c(0,0)) 

# calculate segment coordinates
segs <- c(.39, .23, .23, .15)
segs_center <- cumsum(segs) - segs/2
seg_ticks <- cumsum(segs)[1:3]
seg_labels <- paste("Seg", seq_along(segs))

# create graphicaal objects and gather as tree
grobs <- grobTree(linesGrob(c(0,1), c(.5,.5)),
                  segmentsGrob(x0=seg_ticks, x1=seg_ticks, y0=0, y1=1),
                  textGrob(x=segs_center, y=0, 
                           label = seg_labels, hjust = .5, gp = gpar(cex =.7)))

# insert grobsTree in as annotation
g <- g + annotation_custom( grob = grobs,  
                            ymin = -.2, ymax = .2, 
                            xmin = .25, xmax = 10.75)

# override clipping for plotting outside of plotting area
gt <- ggplot_gtable(ggplot_build(g))
gt$layout$clip[gt$layout$name == "panel"] <- "off"
grid.newpage()  
grid.draw(gt)

在此處輸入圖片說明

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM