Matplotlib - Image Display
Identify the error in this code snippet:
import matplotlib.pyplot as plt import numpy as np image = np.array([[1, 2], [3, 4]]) plt.imshow(image, cmap=plasma) plt.show()
