I wish to create a plot as the above with data such as this,
data1=data.frame("School"=c(1,2,3,4,5,6,7,8,9,10), "Score"=c(80,64,79,64,64,89,69,71,61,98), "ScoreLow"=c(65,62,62,60,60,84,54,55,55,69), "ScoreHigh"=c(98,79,85,97,88,95,97,90,79,99)) The blue line is 'Score' and score is on the Y-AXIS and 'SChool' is on the X-AXIS. The length of the black line gets determined from 'ScoreLow' and 'ScoreHigh'


