I\'m making a multiple lines plot with errorbars. If I don\'t use the size argument, everything is fine:
size
# sample data Response=runif(4) ResponseMin
try this, size outside aes()
ggplot(df,aes(x=x,y=Average,colour=Case)) + geom_line(aes(group=Case), size = 1) + geom_point() + geom_errorbar(aes(ymin=Lower,ymax=Upper,width=0.25)) + labs(y="foo",title="Some plot fu")