Matplotlib及seaborn基本操作
plt.figure(figsize=(7,5),edgecolor='pink',facecolor='white',frameon=False)#绘图参数 plt.scatter(x, y)#散点图 plt.plot(x, model.predict(x), color='r')#直线图&曲线图 plt.xlabel('IQ')#横轴 plt.ylab...