I have big data like the following but this just little sample.

pos <- c(1, 3, 5, 8, 10, 12)
start <- c(1,3, 6, 7, 10, 11)
end <- c(5, 6, 9, 9, 13, 12)

Qunatative variable Pos will be Y axis and X axis will be anthor X variable (quantitative). The horizontal bar length for each Pos value is defined by start and end point. For example,line for 1 will start from 1 and end at 3 in x axis.

The following is rough sketch of desired the figure output.

enter image description here

link|improve this question

2  
Is the last example helpful? had.co.nz/ggplot2/geom_linerange.html – Roman Luštrik Feb 24 at 14:53
yes, indeed ..it is helpful – hijo Feb 24 at 15:15
feedback

2 Answers

up vote 3 down vote accepted

Use package ggplot2 with geom_segment to draw the lines.

Start by combining your data into a data.frame, since this the required data structure for ggplot:

dat <- data.frame(
  pos = c(1, 3, 5, 8, 10, 12),
  start = c(1,3, 6, 7, 10, 11),
  end = c(5, 6, 9, 9, 13, 12)
)

Create the plot:

library(ggplot2)
ggplot(dat) + 
    geom_segment(aes(x=start, y=pos, xend=end, yend=pos), color="blue", size=3) +
    scale_y_reverse()

enter image description here

link|improve this answer
feedback

In base R...

plot(pos, type = 'n', xlim = range(c(start, end)), ylim = c(13,0))
grid()
segments(start, pos, end, pos)

To get it more exactly like your figure...

plot(pos, type = 'n', xlim = range(c(start, end)), ylim = c(13.5,0.5), xaxt = 'n', yaxt = 'n')
abline(h = 1:13, lty = 3, col = 'grey')
abline(v = 1:13, lty = 3, col = 'grey')
axis(1, 1:13, 1:13, cex.axis = 0.8)
axis(2, 1:13, 1:13, las = 1, cex.axis = 0.8)
segments(start, pos, end, pos)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.