Hello! When I draw line from bottom left figure corner up to top right figure corner, I see then that there some figure paddings: fig = plt.figure(facecolor='#ccc') ax = fig.gca() ax.set_axis_off() ...
%matplotlib inline import matplotlib.pyplot as plt import numpy as np x = np.array([1, 3, 5, 7]) y = np.array([ 6, 3, 9, 5 ]) plt.plot(x, y, 'o') plt.show() ...