I have a 1800*100000000 matrix, and I want to plot it in python using code below:
import matplotlib.pyplot as plt
plt.spy(m)
plt.show()
The result is disappointing, it looks like a line because of little row number compared to column number:
How can I do it correctly?


