I am Using ggplot2 for plotting this image:
The thing is: On the X-Axes are ranges. What I would like to do: I would like to make each dot/line/whatever as big as the ranges (written on the X-Axes) are.
Is that possible? My code looks like:
ggplot(data, aes(as.character(paste(data$V3,data$V4,sep="-")), means, color = factor(numSamp),group = 1))+
geom_point()+
stat_smooth(method = "lm")
Cheers,
Mario