1. 程式人生 > >python 使用matplotlib 實現從檔案中讀取x,y座標的視覺化

python 使用matplotlib 實現從檔案中讀取x,y座標的視覺化

1. test.txt檔案,資料以逗號分割,第一個資料為x座標,第二個為y座標,資料如下:
1.1,2
2.1,2
3.1,3
4.1,5
40,38
42,41
43,42

2. python部分程式碼

#!/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.顯示效果