ggplot2图,从某一点开始缩放轴

时间:2015-11-26 15:50:56

标签: r ggplot2

如何从特定点开始用ggplot2缩放轴。假设我们的范围是0到100,大多数值都在1到10之间,一个值是100。

require('data.table')
require('ggplot2')

test <- data.table(x=1:10,y=c(seq(1,9),100))

ggplot(test, aes(x=x,y=y)) + geom_point(size=5)

enter image description here

我想创建一个y尺度来自1 to 10 by 1和之后by 10的图形,因此值9和100之间的空间在图表中变得“更小”。

更新

eipi10的方式非常适合我想要实现的目标。我正在努力的另一个细节。如何摆脱第二个传奇并在最终情节中保持正确的比例?

enter image description here

和剧情代码:

test <- data.table(x=1:10,y=c(seq(1,9),100))

p1 = ggplot(test, aes(x=x,y=y,color=x)) + 
  geom_point(size=5) +
  scale_x_continuous(limits=c(0,10)) +
  coord_cartesian(ylim=c(-0.1,10)) +
  scale_y_continuous(breaks=0:10) +
  theme(plot.margin=unit(c(0,0.5,0,0),"lines"))

p2 = ggplot(test, aes(x=x,y=y,color=x)) + 
  geom_point(size=5) + #geom_point(size=5,show.legend=FALSE) +
  scale_x_continuous(limits=c(0,10)) +
  coord_cartesian(ylim=c(40,110)) +
  scale_y_continuous(breaks=c(50,100)) +
  theme(plot.margin=unit(c(0,0.5,-0.5,0), "lines"),
       axis.title.x=element_blank(),
       axis.ticks.x=element_blank(),
       axis.text.x=element_blank(),
       legend.position="none") +
 labs(y="")

gA <- ggplotGrob(p1)
gB <- ggplotGrob(p2)
maxWidth = grid::unit.pmax(gA$widths[2:5], gB$widths[2:5])
gA$widths[2:5] <- as.list(maxWidth)
gB$widths[2:5] <- as.list(maxWidth)
grid.arrange(gB, gA, ncol=1, heights=c(0.15,0.85))

更新2:

最终结果的一个例子。再次感谢eipi10和他的大力支持! enter image description here

1 个答案:

答案 0 :(得分:5)

日志转换会这样做:

require('data.table')
require('ggplot2')
library(scales)

test <- data.table(x=1:10,y=c(seq(1,9),100))

ggplot(test, aes(x=x,y=y)) + 
  geom_point(size=5) +
  scale_y_log10(breaks=c(1,3,10,30,100))

enter image description here

更新:使用ggplot2做破坏的轴没有简单的方法(因为ggplot2不允许你(轻松)做一些被认为是不好的事情),但这是一种获取方法你在寻找什么。 (只是不要告诉哈德利我告诉过你。)

library(data.table)
library(ggplot2)
library(scales)
library(grid)
library(gridExtra)

test <- data.table(x=1:10,y=c(seq(1,9),100))

总体策略是制作两个单独的图,一个用于y> = 10,一个用于y <10,然后将它们放在一起。我们将更改绘图边距,以便控制底部绘图顶部和顶部绘图底部之间的空间量。我们还将摆脱顶部图中的x轴刻度和标签。

底部图(y <10):

p1 = ggplot(test[test$y<10,], aes(x=x,y=y)) + 
  geom_point(size=5) +
  scale_x_continuous(limits=c(0,10)) +
  coord_cartesian(ylim=c(-0.1,10)) +
  scale_y_continuous(breaks=0:10) +
  theme(plot.margin=unit(c(0,0.5,0,0),"lines"))

顶部图(y> = 10)。对于这个,我们摆脱了x轴标签和刻度线:

p2 = ggplot(test[test$y>=10,], aes(x=x,y=y)) + 
  geom_point(size=5) +
  scale_x_continuous(limits=c(0,10)) +
  coord_cartesian(ylim=c(10.0,110)) +
  scale_y_continuous(breaks=c(50,100)) +
  theme(plot.margin=unit(c(0,0.5,-0.5,0), "lines"),
        axis.title.x=element_blank(),
        axis.ticks.x=element_blank(),
        axis.text.x=element_blank()) +
  labs(y="")

左对齐两个图(基于this SO answer):

gA <- ggplotGrob(p1)
gB <- ggplotGrob(p2)
maxWidth = grid::unit.pmax(gA$widths[2:5], gB$widths[2:5])
gA$widths[2:5] <- as.list(maxWidth)
gB$widths[2:5] <- as.list(maxWidth)

将两个地块排列在一起。 heights参数确定分配给每个图的垂直空间的比例:

grid.arrange(gB, gA, ncol=1, heights=c(0.15,0.85))

enter image description here

更新2 :要包含图例,同时确保图表正确对齐,请执行以下操作:

1)运行更新后的问题中的代码,以创建图p1p2,其中只有p1有图例。

2)使用下面的函数(来自this SO answer)将图例提取为单独的grob。

3)从p1删除图例。

4)使用grid.arrangearrangeGrob布置图表和图例。

# Function to extract the legend as a stand-alone grob
g_legend<-function(a.gplot){
  tmp <- ggplot_gtable(ggplot_build(a.gplot))
  leg <- which(sapply(tmp$grobs, function(x) x$name) == "guide-box")
  legend <- tmp$grobs[[leg]]
  legend
}

# Extract the legend from p1
leg = g_legend(p1)

# Remove the legend from p1
p1 = p1 + theme(legend.position="none")

# Left justify the two plots
gA <- ggplotGrob(p1)
gB <- ggplotGrob(p2)
maxWidth = grid::unit.pmax(gA$widths[2:5], gB$widths[2:5])
gA$widths[2:5] <- as.list(maxWidth)
gB$widths[2:5] <- as.list(maxWidth)

# Lay out the plots and the legend
grid.arrange(arrangeGrob(gB, gA, ncol=1, heights=c(0.15,0.85)),
             leg, ncol=2, widths=c(0.9,0.1))

enter image description here