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

[Python] code sharing for drawing 2D scatter diagram

編輯:Python

import matplotlib.pyplot as plt

# Solve the problem that Chinese cannot be displayed

plt.rcParams['font.sans-serif'] = ['SimHei']

plt.rcParams['axes.unicode_minus'] = False

plt.title(" Two dimensional scatter plot ", fontsize=24)

plt.xlim(xmax=9,xmin=0)

plt.ylim(ymax=9,ymin=0)

# The coordinates of the points are [0, 0], [3, 8], [1, 1], [2, 2], [5, 3], [4, 8], [6, 3], [5, 4], [6, 4], [7, 5]

plt.plot([0,3,1,2,5,4,6,5,6,7],[0,8,1,2,3,8,3,4,4,5],'ro')

plt.savefig('testblueline.jpg')


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