python 绘图脚本系列简单记录
生活随笔
收集整理的這篇文章主要介紹了
python 绘图脚本系列简单记录
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
簡單記錄平時畫圖用到的python 便捷小腳本
1. 從單個文件輸入 繪制坐標系圖
#!/usr/bin/python
# coding: utf-8
import matplotlib.pyplot as plt
import numpy as np
import matplotlib as mpl
import sysfile_name1 = sys.argv[1]
data_title = sys.argv[2]
print(file_name1)
mpl.rcParams['font.family'] = 'sans-serif'
mpl.rcParams['font.sans-serif'] = 'NSimSun,Times New Roman'x, y = np.loadtxt(file_name1, delimiter=' ', unpack=True)
plt.plot(x, y, '-', label='read', color='red')
plt.ticklabel_format(style='plain')plt.xlabel('time/s')
plt.ylabel('count')
plt.title(data_title)
plt.savefig(data_title + ".png")
plt.show()
執(zhí)行 python3 draw.py input.txt save-to-name
注意:
input.txt中的兩列數(shù)據(jù),中間間隔空格plt.plot(x, y, '-', label='read', color='red')中的-標識繪制折線圖,如果改成*,則表示繪制散點圖,最后一個color標識坐標軸圖形的顏色。savefig表示保存的文件名,可以自己定義存儲什么格式的文件title指定圖形的標題
2. 多個文件的輸入 畫在一個坐標軸中
#!/usr/bin/python
# coding: utf-8
import matplotlib.pyplot as plt
import numpy as np
import matplotlib as mpl
import sysfile_name1 = sys.argv[1]
file_name2 = sys.argv[2]
data_title = sys.argv[2]
print(file_name1)
print(file_name2)
mpl.rcParams['font.family'] = 'sans-serif'
mpl.rcParams['font.sans-serif'] = 'NSimSun,Times New Roman'x, y = np.loadtxt(file_name1, delimiter=' ', unpack=True)
x1, y1 = np.loadtxt(file_name2, delimiter=' ', unpack=True)
plt.plot(x, y, '-', label='read', color='red')
plt.plot(x1, y1, '-', label='write', color='blue')
plt.ticklabel_format(style='plain')plt.xlabel('time/s')
plt.ylabel('count')
plt.title(data_title)
plt.legend(['read', 'write'])
plt.savefig(data_title + ".png")
plt.show()
運行:python3 draw.py iostat-string-set-read.txt iostat-string-set-write.txt iostat-string-set
將兩個文件的數(shù)據(jù)展示在一個坐標軸中,并保存最中的結果。
總結
以上是生活随笔為你收集整理的python 绘图脚本系列简单记录的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 在那可以做试管婴儿
- 下一篇: 求一个用名字取qq网名。