在直方图的 Y 轴上放置一个断点

问题描述 投票:0回答:3

我不确定该怎么称呼它,但我试图实现一种“破碎的直方图”或“轴间隙”效果:http://gnuplot-tricks.blogspot.com/2009/11/ broken-histograms.html(示例在 gnuplot 中)与 R。

看起来我应该使用

gap.plot()
包中的
plotrix
函数,但我只看到了使用散点图和线图来实现这一点的示例。我已经能够在绘图周围的框中添加一个断点,并在其中放置一个锯齿形,但我不知道如何重新缩放轴以放大断点下方的部分。

重点是能够在我的直方图中显示一个非常大的条形的最高值,同时放大到我的大部分明显更短的垃圾箱。 (是的,我知道这可能会产生误导,但如果可能的话我仍然想这样做)

有什么建议吗?

更新 2012 年 5 月 10 日 1040 美国东部时间:

如果我用数据制作常规直方图并使用<- to save it into a variable (

hdata <- hist(...)
),我会得到以下变量的值:

hdata$breaks
 [1] 0.00 0.20 0.21 0.22 0.23 0.24 0.25 0.26 0.27 0.28 0.29 0.30 0.31 0.32 0.33
[16] 0.34 0.35 0.36 0.37 0.38 0.39 0.40 0.41 0.42 0.43 0.44 0.45 0.46 0.47 0.48
[31] 0.49 0.50 0.51 0.52 0.53 0.54 0.55 0.56 0.57 0.58 0.59 0.60 0.61 0.62 0.63
[46] 0.64 0.65 0.66 0.67 0.68 0.69 0.70 0.71 0.72 0.73 0.74 0.75 0.76 0.77 0.78
[61] 0.79 0.80 0.81 0.82 0.83 0.84 0.85 0.86 0.87 0.88 0.89 0.90 0.91 0.92 0.93
[76] 0.94 0.95 0.96 0.97 0.98 0.99 1.00

hdata$counts
 [1]    675      1      0      1      2      2      0      1      0      2
[11]      1      1      1      2      5      2      1      0      2      0
[21]      2      1      2      2      1      2      2      2      6      1
[31]      0      2      2      2      2      3      5      4      0      1
[41]      5      8      6      4     10      3      7      7      4      3
[51]      7      6     16     11     15     15     16     25     20     22
[61]     31     42     48     62     57     45     69     70     98    104
[71]     79    155    214    277    389    333    626    937   1629   3471
[81] 175786

我相信我想使用

$breaks
作为我的 x 轴,
$counts
作为我的 y 轴。

r plotrix
3个回答
12
投票

您可以使用plotrix包中的

gap.barplot

# install.packages('plotrix', dependencies = TRUE)
require(plotrix)

   example(gap.barplot)

twogrp<-c(rnorm(10)+4,rnorm(10)+20)
gap.barplot(twogrp,gap=c(8,16),xlab="Index",ytics=c(3,6,17,20),
ylab="Group values",main="Barplot with gap")

会给你这个, example(gap.barplot)

更新于2012-05-09 19:15:42 PDT

是否可以选择将

facet_wrap
"free"
(或
"free_y"
scales
一起使用?这样您就可以并排比较数据,但具有不同的 y 尺度

这是我的简单示例,

library('ggplot2')

source("http://www.ling.upenn.edu/~joseff/rstudy/data/coins.R")
coins$foo <- ifelse(coins$Mass.g >= 10,  c("Low"), c("hight")) 
m <- ggplot(coins, aes(x = Mass.g)) 
m + geom_histogram(binwidth = 2) + facet_wrap(~ foo, scales = "free")

上面会给你这个, enter image description here


1
投票

这似乎有效:

gap.barplot(hdata$counts,gap=c(4000,175000),xlab="Counts",ytics=c(0,3500,175000),
    ylab="Frequency",main="Barplot with gap",xtics=hdata$counts)

0
投票

尝试ggbreak

图书馆(ggbreak)

scale_y_break(c(,))

© www.soinside.com 2019 - 2024. All rights reserved.