Eu coloquei assim
import matplotlib.pyplot as pltplt.countourf(xx, yy, Z, alpha=0.3)plt.scatter(teste_x.horas_esperadas, teste_x.preco, c=teste_y, s=1)E ele me respondeu
AttributeError: module 'matplotlib.pyplot' has no attribute 'countourf'Como se o contourf não estive não estivesse incluso no matplotlib
 
            