91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python通過matplotlib生成復合餅圖

發布時間:2020-09-25 19:09:03 來源:腳本之家 閱讀:198 作者:imakeithappen 欄目:開發技術

可以通過matplotlib實現

from matplotlib.patches import ConnectionPatch
#制畫布fig = plt.figure(figsize=(9,5.0625))
ax1 = fig.add_subplot(121)
ax2 = fig.add_subplot(122)
fig.subplots_adjust(wspace=0)
#大餅圖的制作
labels = newdata8.index
size = newdata8.quantity
explode=(0,0,0,0,0,0.1)
ax1.pie(size, autopct='%1.1f%%',startangle=30,labels=labels,explode=explode)
#小餅圖的制作
labels2 = others.index
size2 = others.quantity
width=0.2
ax2.pie(size2, autopct='%1.1f%%',startangle=90,labels=labels2,
    radius=0.5,shadow=True)
#使用ConnectionPatch畫出兩個餅圖的間連線
#先得到餅圖邊緣的數據
theta1, theta2 = ax1.patches[5].theta1, ax1.patches[5].theta2
center, r = ax1.patches[5].center,ax1.patches[5].r
#畫出上邊緣的連線
x = r*np.cos(np.pi/180*theta2)+center[0]
y = np.sin(np.pi/180*theta2)+center[1]
con = ConnectionPatch(xyA=(-width/2,0.5),xyB=(x,y),
           coordsA='data', coordsB='data',axesA=ax2,axesB=ax1)
con.set_linewidth(2)
con.set_color=([0,0,0])
ax2.add_artist(con)
#畫出下邊緣的連線
x = r*np.cos(np.pi/180*theta1)+center[0]
y = np.sin(np.pi/180*theta1)+center[1]
con = ConnectionPatch(xyA=(-width/2,-0.5),xyB=(x,y),
           coordsA='data', coordsB='data',axesA=ax2,axesB=ax1)
con.set_linewidth(2)
con.set_color=([0,0,0])
ax2.add_artist(con)
plt.show()

輸出:

python通過matplotlib生成復合餅圖

圖源數據為快餐店銷量

總結

以上所述是小編給大家介紹的python通過matplotlib實現生成復合餅圖,希望對大家有所幫助!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

莲花县| 泌阳县| 大宁县| 道真| 通渭县| 林口县| 颍上县| 吉安市| 宜阳县| 博野县| 观塘区| 黎川县| 平和县| 昭苏县| 玉林市| 馆陶县| 冕宁县| 玛多县| 清徐县| 上杭县| 通城县| 盐津县| 天水市| 南陵县| 福安市| 周口市| 赣州市| 黄浦区| 三门县| 鄂尔多斯市| 泰安市| 岳西县| 高雄市| 师宗县| 滕州市| 新河县| 桐梓县| 湘潭市| 军事| 恩平市| 临泉县|