python 离散点图画法的实现
作者:心之所向521 时间:2021-04-14 17:00:31
基础代码
pred_y = test_output.data.numpy()
pred_y = pred_y.flatten()
print(pred_y, 'prediction number')
print(test_y[:355].numpy(), 'real number')
import matplotlib.pyplot as plt
plt.rc("font", family='KaiTi')
plt.figure()
f, axes = plt.subplots(1, 1)
x = np.arange(1, 356)
# axes.plot(x , pred_y)
axes.scatter(x,pred_y, c='r', marker = 'o')
plt.axhline(36.7, c ='g')
axes.set_xlabel("位置点位")
axes.set_ylabel("预测值")
axes.set_title("矫正网络结果")
plt.savefig("result.png")
plt.show()
离散图画法如上所示。
改进
import matplotlib.pyplot as plt
plt.rc("font", family='KaiTi')
plt.figure()
f, axes = plt.subplots(1, 1)
x = np.arange(1, 356)
# axes.plot(x , pred_y)
axes.scatter(x, pred_y, c='r', marker = 'o')
plt.axhline(36.7, c ='g')
axes.set_xlabel("位置点位")
axes.set_ylabel("预测值")
axes.set_title("矫正网络预测结果")
axes.set_ylim((36, 37))
plt.savefig("result.png")
plt.show()
再次改进:
import matplotlib.pyplot as plt
plt.rc("font", family='KaiTi')
plt.figure()
f, axes = plt.subplots(1, 1)
x = np.arange(1, 356)
# axes.plot(x , pred_y)
axes.scatter(x, pred_y, c='r', marker = 'o')
plt.axhline(36.7, c ='g')
axes.set_xlabel("位置点位")
axes.set_ylabel("预测值")
axes.set_title("矫正网络预测结果")
axes.set_ylim((36, 37))
plt.savefig("result.png")
plt.legend(['real', 'predict'], loc='upper left')
plt.show()
又次改进:
import matplotlib.pyplot as plt
plt.rc("font", family='KaiTi')
plt.figure()
f, axes = plt.subplots(1, 1)
x = np.arange(1, 356)
# axes.plot(x , pred_y)
axes.scatter(x, pred_y, c='r', s=3, marker = 'o')
plt.axhline(36.7, c ='g')
axes.set_xlabel("位置点位")
axes.set_ylabel("预测值")
axes.set_title("矫正网络预测结果")
axes.set_ylim((36, 37))
plt.savefig("result.png")
plt.legend(['真实值36.7℃', '预测值'], loc='upper left')
plt.show()
改进:----加准确率
import matplotlib.pyplot as plt
plt.rc("font", family='KaiTi')
plt.figure()
f, axes = plt.subplots(1, 1)
x = np.arange(1, 356)
# axes.plot(x , pred_y)
axes.scatter(x, pred_y, c='r', s=3, marker = 'o')
plt.axhline(36.7, c ='g')
axes.set_xlabel("位置点位")
axes.set_ylabel("预测值")
axes.set_title("矫正网络预测结果")
axes.set_ylim((36, 37))
plt.savefig("result.png")
plt.legend(['真实值36.7℃', '预测值'], loc='upper left')
row_labels = ['准确率:']
col_labels = ['数值']
table_vals = [['{:.2f}%'.format(v*100)]]
row_colors = ['gold']
my_table = plt.table(cellText=table_vals, colWidths=[0.1] * 5,
rowLabels=row_labels, rowColours=row_colors, loc='best')
plt.show()
来源:https://blog.csdn.net/weixin_45564943/article/details/123880105
标签:python,离散点图
0
投稿
猜你喜欢
javascript实现无法关闭的弹框
2024-05-08 09:32:13
oracle11g卸载完整图文教程
2024-01-26 18:23:42
Django动态展示Pyecharts图表数据的几种方法
2022-03-18 05:28:09
正则表达式语法速查
2007-11-11 10:43:00
Python实现打乒乓小游戏
2023-07-20 04:48:53
Win10下python 2.7.13 安装配置方法图文教程
2023-01-13 20:12:27
flask route对协议作用及设计思路
2023-01-19 13:21:34
numpy数组叠加的实现示例
2021-09-29 11:59:18
python读取txt文件中特定位置字符的方法
2022-07-02 17:38:52
python scatter函数用法实例详解
2021-12-17 11:51:50
python实现获取当前设备的地点位置
2022-02-11 05:30:59
django admin后管定制-显示字段的实例
2023-07-01 11:34:18
python绘制规则网络图形实例
2021-08-31 02:28:28
解决python3 网络请求路径包含中文的问题
2023-07-09 00:14:23
pytorch实现用Resnet提取特征并保存为txt文件的方法
2023-04-10 17:21:09
Python高级文件操作之shutil库详解
2022-05-28 10:23:42
Python操作Excel的学习笔记
2022-04-02 16:43:29
vue+vux实现移动端文件上传样式
2024-05-02 16:34:40
解决python 文本过滤和清理问题
2023-08-31 08:18:38
vue3中setup-script的应用实例
2024-04-27 16:01:01