我想了解更多有关图片输出的信息。特别是测试值和预测值的振幅喙。
import seaborn as sb
fig = plt.figure(figsize=(12,8))
ax = fig.add_subplot(311)
sb.distplot(y_test)
plt.title('y_test')
plt.xlim([-100, 200])
ax = fig.add_subplot(312)
sb.distplot(y_predict)
plt.title('y_predict')
plt.xlim([-100, 200])
ax = fig.add_subplot(313)
sb.distplot(y_test - y_predict)
plt.title('y_test - y_predict')
plt.xlim([-10, 20])
plt.tight_layout()
plt.show()