日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

【python图像处理】python绘制饼状图

發布時間:2025/3/21 python 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【python图像处理】python绘制饼状图 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

餅狀圖在統計分析中有著重要的應用,python中用于繪制餅狀圖是matplotlib中的pyplot類,這里就介紹一下,如何繪制餅狀圖。

直接看下面的代碼

""" =============== Basic pie chart ===============Demo of a basic pie chart plus a few additional features.In addition to the basic pie chart, this demo shows a few optional features:* slice labels* auto-labeling the percentage* offsetting a slice with "explode"* drop-shadow* custom start angleNote about the custom start angle:The default ``startangle`` is 0, which would start the "Frogs" slice on the positive x-axis. This example sets ``startangle = 90`` such that everything is rotated counter-clockwise by 90 degrees, and the frog slice starts on the positive y-axis. """ import matplotlib.pyplot as plt# Pie chart, where the slices will be ordered and plotted counter-clockwise: labels = 'Frogs', 'Hogs', 'Dogs', 'Logs' sizes = [15, 30, 45, 10] explode = (0, 0.1, 0, 0) # only "explode" the 2nd slice (i.e. 'Hogs')fig1, ax1 = plt.subplots() ax1.pie(sizes, explode=explode, labels=labels, autopct='%1.1f%%',shadow=True, startangle=90) ax1.axis('equal') # Equal aspect ratio ensures that pie is drawn as a circle.plt.show()
繪制結果如下圖所示:



2017.09.19

總結

以上是生活随笔為你收集整理的【python图像处理】python绘制饼状图的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。