程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Drawing with PLT in Python

編輯:Python

python of use plt drawing

import matplotlib.pyplot as plt
from matplotlib import font_manager
# Set the font to use , Microsoft YaHei is used here
my_font = font_manager.FontProperties(fname='C:\Windows\Fonts\MSYH.TTC')
x=list(range(5))
y=list(range(5))
plt.figure()
# Draw a line
plt.subplot(2,2,1)
plt.xlabel('x Axis ',fontproperties = my_font)
plt.ylabel('y Axis ',fontproperties = my_font)
plt.title(' Broken line diagram ',fontproperties = my_font)
plt.plot(x,y)
# Histogram
plt.subplot(2,2,2)
plt.xlabel('x Axis ',fontproperties = my_font)
plt.ylabel('y Axis ',fontproperties = my_font)
plt.title(' Histogram ',fontproperties = my_font)
plt.bar(x,y)
# Discrete graphs
plt.subplot(2,2,3)
plt.xlabel('x Axis ',fontproperties = my_font)
plt.ylabel('y Axis ',fontproperties = my_font)
plt.title(' Discrete graphs ',fontproperties = my_font)
plt.scatter(x,y)
plt.show()

The operation results are as follows :


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved