Matplotlib - Image Display
Given this code snippet, what is the error?
import matplotlib.pyplot as plt import numpy as np image = np.random.rand(10,10) plt.imshow(image, interpolation='bicubicc') plt.show()
