These lines produce a gap between the X axis and the image: ```python plt.rcParams['figure.figsize'] = [8, 7] plt.imshow([[1, 3], [2, 1]]) plt.savefig('gap.jpg', dpi=50) ``` 