I am new to python and trying to run a simple plot using the following code -
import matplotlib
import matplotlib.pyplot as plt
dataset.hist()
plt.show()
I am getting the following error: ImportError: matplotlib is required for plotting.
I alraedy have pandas, numpy and matplotlib installed.
thanks.