Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example:

x <- seq(0,23,by=1)
y <- seq(2,5,length.out=24)

plot(x,y)

gives: Error in plot.new() : figure margins too large

But this works:

ggplot() + geom_point(aes(x,y))

Why?

share|improve this question
1  
Just realized that this is related to the size of my plot view window. – RwardBound Jun 11 '12 at 16:19

closed as too localized by Brian Diggs, joran, Andrie, mnel, plannapus Mar 22 at 10:40

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.