Executing import imodels influences the way matplotlib plots are displayed subsequently.
To reproduce, run
import matplotlib.pyplot as plt
import numpy as np
# import imodels
x = np.arange(0, 10, 0.01)
y = np.sin(x)
plt.plot(x, y)
with the import commented and uncommented. Plot size will be (very) different, like below:
Expected behavior (I think) would be the import statement not to affect the appearance of figures. This is a bit annoying as the display size is disproportionately large e.g. when using a Jupyter notebook. I'm on imodels==1.3.15.
Executing
import imodels
influences the way matplotlib plots are displayed subsequently.To reproduce, run
with the import commented and uncommented. Plot size will be (very) different, like below:
Expected behavior (I think) would be the
import
statement not to affect the appearance of figures. This is a bit annoying as the display size is disproportionately large e.g. when using a Jupyter notebook. I'm onimodels==1.3.15
.