Plot function in matplotlib 3.1.3 generate following strips. ``` ones = np.ones((200,100)) cumsum = np.cumsum(ones, axis=1) plt.plot(cumsum, linestyle='', marker='o', markersize=0.6, color="k"); ``` 