脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python 使用matplotlib 实现从文件中读取x,y坐标的可视化方法

python 使用matplotlib 实现从文件中读取x,y坐标的可视化方法

2021-08-01 00:51小明37 Python

今天小编就为大家分享一篇python 使用matplotlib 实现从文件中读取x,y坐标的可视化方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

1. test.txt文件,数据以逗号分割,第一个数据为x坐标,第二个为y坐标,数据如下:1.1,2

?
1
2
3
4
5
6
2.1,2
3.1,3
4.1,5
40,38
42,41
43,42

2. python部分代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/python
# coding: utf-8
import matplotlib.pyplot as plt
import numpy as np
import matplotlib as mpl
 
mpl.rcParams['font.family'] = 'sans-serif'
mpl.rcParams['font.sans-serif'] = 'NSimSun,Times New Roman'
 
x, y = np.loadtxt('test.txt', delimiter=',', unpack=True)
plt.plot(x, y, '*', label='Data', color='black')
 
plt.xlabel('x')
plt.ylabel('y')
plt.title('Data')
plt.legend()
plt.show()

3. 显示效果

python 使用matplotlib 实现从文件中读取x,y坐标的可视化方法

以上这篇python 使用matplotlib 实现从文件中读取x,y坐标的可视化方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/we1583004we/article/details/79849529

延伸 · 阅读

精彩推荐