中文字幕理论片,69视频免费在线观看,亚洲成人app,国产1级毛片,刘涛最大尺度戏视频,欧美亚洲美女视频,2021韩国美女仙女屋vip视频

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
用python 繪制莖葉圖和復(fù)合餅圖
這篇文章主要介紹了用python 繪制莖葉圖和復(fù)合餅圖,幫助大家更好的理解和學習使用python,感興趣的朋友可以了解下

莖葉圖

?
1
2
3
4
5
6
7
8
9
from itertools import groupby
nums2=[225, 232,232,245,235,245,270,225,240,240,217,195,225,185,200,
    220,200,210,271,240,220,230,215,252,225,220,206,185,227,236]
for k, g in groupby(sorted(nums2), key=lambda x: int(x) // 10):
  print (k, list(g))
  # print('k', k)
  # print('g', list(g))
  lst = map(str, [int(y) % 10 for y in list(g)])
  print (k, '|', ' '.join(lst))

輸出:

?
1
2
3
4
5
6
7
8
9
18 | 5 5
19 | 5
20 | 0 0 6
21 | 0 5 7
22 | 0 0 0 5 5 5 5 7
23 | 0 2 2 5 6
24 | 0 0 0 5 5
25 | 2
27 | 0 1

說明:

1./ 就表示 浮點數(shù)除法,返回浮點結(jié)果; // 表示整數(shù)除法。

2.itertools.groupby 按照分組函數(shù)的值對元素進行分組。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
>>> from itertools import groupby
>>> x = groupby(range(10), lambda x: x < 5 or x > 8)
>>> for condition, numbers in x:
    print(condition, list(numbers))
輸出:
True [0, 1, 2, 3, 4]
False [5, 6, 7, 8]
True [9]
>>> [k for k, g in groupby('AAAABBBCCDAABBB')]
['A', 'B', 'C', 'D', 'A', 'B']
>>> [list(g) for k, g in groupby('AAAABBBCCD')]
[['A', 'A', 'A', 'A'], ['B', 'B', 'B'], ['C', 'C'], ['D']]

3.map(function, iterable, ...) 根據(jù)提供的函數(shù)對指定序列做映射。第一個參數(shù) function 以參數(shù)序列中的每一個元素調(diào)用 function 函數(shù),返回包含每次 function 函數(shù)返回值的新列表。
4.循環(huán)加處理的例子

?
1
2
>>> [int(y) % 10 for y in [22,73,34,92,45]]
[2, 3, 4, 2, 5]

復(fù)合餅圖

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import numpy as np
import matplotlib as mpl
from matplotlib import cm
import matplotlib.pyplot as plt
from matplotlib.patches import ConnectionPatch
# 使圖表元素中正常顯示中文
mpl.rcParams['font.sans-serif'] = 'SimHei'
# 使坐標軸刻度標簽正常顯示負號
mpl.rcParams['axes.unicode_minus'] = False
#制畫布
fig = plt.figure(figsize=(9,5.0625), facecolor='cornsilk')
ax1 = fig.add_subplot(121)
ax2 = fig.add_subplot(122)
# 調(diào)整子區(qū)布局
fig.subplots_adjust(wspace=0)
# 大餅圖的制作
labels = ['成都','武漢','昆明','貴陽','西安','其它']
size = [802,530,477,256,233,307]
# 分裂距離
explode=(0,0,0,0,0,0.1)
ax1.pie(size,        # 數(shù)據(jù)
    autopct='%1.1f%%'# 鍥形塊的數(shù)據(jù)標簽格式
    startangle=30,    # 鍥形塊開始角度
    labels=labels,
    colors=cm.Blues(range(10, 300, 50)),
    explode=explode)
#小餅圖的制作
labels2 = ['西寧','拉薩','烏魯木齊','蘭州']
size2 = [102,79, 76, 50]
width=0.2
ax2.pie(size2,
    autopct='%1.1f%%',
    startangle=90,
    labels=labels2,
    colors=cm.Blues(range(10, 300, 50)),
    radius=0.5,
    shadow=False)
#使用ConnectionPatch畫出兩個餅圖的間連線
#先得到餅圖邊緣的數(shù)據(jù)
theta1, theta2 = ax1.patches[-1].theta1, ax1.patches[-1].theta2
center, r   = ax1.patches[-1].center, ax1.patches[-1].r
#畫出上邊緣的連線
x = r*np.cos(np.pi/180*theta2)+center[0]
y = np.sin(np.pi/180*theta2)+center[1]
con1 = ConnectionPatch(xyA=(0, 0.5),
            xyB=(x,y),
            coordsA=ax2.transData,
            coordsB=ax1.transData,
            axesA=ax2,axesB=ax1)
print(-width/2, 0.5)
print(x,y)
#畫出下邊緣的連線
x = r*np.cos(np.pi/180*theta1) + center[0]
y = np.sin(np.pi/180*theta1) + center[1]
con2 = ConnectionPatch(xyA=(-0.1, -0.49),
            xyB=(x,y),
            coordsA='data',
            coordsB='data',
            axesA=ax2,axesB=ax1)
# 添加連接線
for con in [con1, con2]:
  con.set_color('gray')
  ax2.add_artist(con)
  con.set_linewidth(1)
plt.show()

輸出:

以上就是用python 繪制莖葉圖和復(fù)合餅圖的詳細內(nèi)容,更多關(guān)于python 繪制莖葉圖和復(fù)合餅圖的資料請關(guān)注腳本之家其它相關(guān)文章!

本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Python繪制參數(shù)方程圖
轉(zhuǎn)的數(shù)據(jù)分析相關(guān)的內(nèi)容
在 Python 中構(gòu)建一套全面的技術(shù)指標系統(tǒng)以進行量化交易
利用 Python 分析了某化妝品企業(yè)的銷售情況,我得出的結(jié)論是?
python-13-pandas的常用操作
獨家 | 手把手教你怎樣用Python生成漂亮且精辟的圖像(附教程代碼)
更多類似文章 >>
生活服務(wù)
熱點新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服