How do I highlight an observation's bin in a histogram in R

十年热恋 提交于 2019-12-18 16:45:32

问题


I want to create a histogram from a number of observations (i.e. d <- c(1,2.1,3.4,4.5) ) and then highlight the bin that a particular observation falls in, such that I have an output that looks like this:

how do I do this in R?


回答1:


Expanding on dangerstat's answer, here is a little function that will automatically find which bin contains the value that you want to highlight:

highlight <- function(x, value, col.value, col=NA, ...){
   hst <- hist(x, ...)
   idx <- findInterval(value, hst$breaks)
   cols <- rep(col, length(hst$counts))
   cols[idx] <- col.value
   hist(x, col=cols, ...)
}

Now

x <- rnorm(100)
highlight(x, 1.2, "red")

will highlight the bin with 1.2 in it in red.




回答2:


x = rnorm(100)
hist(x,br=10,col=c(rep(0,9),1))

Clearly this will color the last column so tweak the col= bit for your needs

Thanks

dangerstat



来源:https://stackoverflow.com/questions/2127926/how-do-i-highlight-an-observations-bin-in-a-histogram-in-r

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!