溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python使用matplotlib實(shí)現(xiàn)繪制折線圖

發(fā)布時(shí)間:2020-11-02 16:10:32 來源:億速云 閱讀:167 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章運(yùn)用簡(jiǎn)單易懂的例子給大家介紹python使用matplotlib實(shí)現(xiàn)繪制折線圖,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

示例代碼如下:

#!/usr/bin/python
#-*- coding: utf-8 -*-

import matplotlib.pyplot as plt

# figsize - 圖像尺寸(figsize=(10,10))
# facecolor - 背景色(facecolor="blue")
# dpi - 分辨率(dpi=72)
fig = plt.figure(figsize=(10,10),facecolor="blue") #figsize默認(rèn)為4,4(圖像尺寸)

ax1 = fig.add_subplot(1,1,1) # 行 列 位置
#ax2 = fig.add_subplot(2,1,2)
#ax = fig.add_subplot(1,1,1)
ax1.set_title("title") #不支持中文

# 設(shè)置坐標(biāo)軸的label
ax1.set_xlabel("ax1 - X")
ax1.set_ylabel("ax1 - Y")

# 設(shè)置刻度
#ax1.set_xticks([1,2,3,4,5])
#ax1.set_yticks([10,20,30,40,50])

# 設(shè)置刻度label
#ax1.set_xticklabels(["one","two","three","four","five"])  # one對(duì)應(yīng)1


# 繪制折線圖
x = [1,2,3,4,5]
y = [80,3,4,5,1]

#生成正弦波曲線
import numpy as np
x = np.linspace(0,np.pi * 2,20)
y = np.sin(x)

#生成余弦波曲線
y2 = np.cos(x)

#ax1.plot(x,y,x,y2) #在一張圖中放置兩條曲線
# 使用圖例
# linewidth設(shè)置線條粗細(xì),linestyle設(shè)置線條樣式,marker設(shè)置數(shù)據(jù)點(diǎn)
ax1.plot(x,y, label = "SIN",color="y",linewidth=3,line,marker="o")
ax1.plot(x,y2,label= "COS",color="r")
ax1.legend(loc="best") # 使用圖例 #best為最佳位置 (upper left 左上;center 居中;...)

# 注釋,比如說明最高點(diǎn)
# xy指定最高點(diǎn),xytext指定注釋位置
arrowprops = {"arrowstyle": "->","color":"red"} #設(shè)置箭頭
ax1.annotate("max",xy=(np.pi/2,1),xytext=(np.pi/2+0.5,1),arrowprops=arrowprops)


plt.show()

效果如下

python使用matplotlib實(shí)現(xiàn)繪制折線圖

關(guān)于python使用matplotlib實(shí)現(xiàn)繪制折線圖就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI