I have a matrix 200x3in python that I would like to build. However, using Matplotlib, I get the following drawing. How can I build an image that looks better?
my code is:
import matplotlib.pyplot as plt
plt.imshow(spectrum_matrix)
plt.show()

user4175155
source
share