国产毛多水多高潮高清,久热这里只有精品视频6,国内精品久久久久久久久电影网,国产男同志CHINA69,精品999日本久久久影院,人人妻人人澡人人爽人人精品,亚洲中文无码永久免

利用Python的matplotlib库绘制动态图形-邦尼彩票APP

利用Python的matplotlib库绘制动态图形

2026-01-18 03:43:22投稿人:BOB官方體育賽下載鏈接(衡水)有限公司圍觀563 評論

利用Python的matplotlib庫繪制動態(tài)圖形

一、python 繪制動畫圖

python繪制動態(tài)圖形是數(shù)據(jù)可視化更直觀、更好看的一種方式,matplotlib工具包是常用的繪圖工具 ,也可以用來繪制動態(tài)圖形 。本文介紹四種繪制動態(tài)圖形的方法,包括生成圖形的代碼和動態(tài)圖形演示示例。

用matplotlib工具包創(chuàng)建動畫圖有兩種方法 :

  • 使用 pause() 函數(shù)
  • 使用 FuncAnimation() 函數(shù)

動畫柱狀圖,使用FuncAnimation() 函數(shù)

代碼如下:

from matplotlib import pyplot as pltfrom matplotlib.animation import FuncAnimation, writersimport numpy as np  fig = plt.figure(figsize = (7,5))axes = fig.add_subplot(1,1,1)axes.set_ylim(0, 300)palette = ['blue', 'red', 'green',            'darkorange', 'maroon', 'black']  y1, y2, y3, y4, y5, y6 = [], [], [], [], [], []  def animation_function(i):    y1 = i    y2 = 5 * i    y3 = 3 * i    y4 = 2 * i    y5 = 6 * i    y6 = 3 * i      plt.xlabel("Country")    plt.ylabel("GDP of Country")          plt.bar(["India", "China", "Germany",              "USA", "Canada", "UK"],            [y1, y2, y3, y4, y5, y6],            color = palette)  plt.title("Bar Chart Animation")  animation = FuncAnimation(fig, animation_function,                           interval = 50)plt.show()

如下圖 :


橫向柱狀跑圖 (Horizontal Bar Chart Race)