Closed
Description
The hist2d doesn't behave as expected (at least as I expected) when setting x and y limits.
x = randn(10000);
y = randn(10000);
figure()
xlim(-2, 2);
hist(x, bins=100); # obeys the xlim
figure();
xlim(-2, 2);
ylim(-2, 2);
hist2d(x, y, bins=100); # sets it's own xlim that seems to depend on bin size
Running matplotlib 1.4.2