I have a dataset that contains numbers between -10 and 0. E.g. x = 
c(-9.23, -9.56, -1.40, ...)
If I no do a
> qplot(x, geom="histogram")
I get the error:
Error: position_stack requires non-overlapping x intervals
Strangely, the following both work:
> qplot(x * -1, geom="histogram")
> qplot(x+100, geom="histogram")
Has anyone else encountered this? Is this a bug in ggplot2, or do I get 
anything completely wrong here?
Versions: R: 2.9.1, ggplot2: 0.8.3 
        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to