日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
用Python繪制數(shù)據(jù)的7種流行的方法

“如何在 Python 中繪圖?”曾經(jīng)這個(gè)問題有一個(gè)簡單的答案:Matplotlib 是唯一的辦法。如今,Python 作為數(shù)據(jù)科學(xué)的語言,有著更多的選擇。你應(yīng)該用什么呢?

本指南將幫助你決定。

它將向你展示如何使用四個(gè)最流行的 Python 繪圖庫:Matplotlib、Seaborn、Plotly 和 Bokeh,再加上兩個(gè)值得考慮的優(yōu)秀的后起之秀:Altair,擁有豐富的 API;Pygal,擁有漂亮的 SVG 輸出。我還會(huì)看看 Pandas 提供的非常方便的繪圖 API。

對(duì)于每一個(gè)庫,我都包含了源代碼片段,以及一個(gè)使用 Anvil 的完整的基于 Web 的例子。Anvil 是我們的平臺(tái),除了 Python 之外,什么都不用做就可以構(gòu)建網(wǎng)絡(luò)應(yīng)用。讓我們一起來看看。

示例繪圖

每個(gè)庫都采取了稍微不同的方法來繪制數(shù)據(jù)。為了比較它們,我將用每個(gè)庫繪制同樣的圖,并給你展示源代碼。對(duì)于示例數(shù)據(jù),我選擇了這張 1966 年以來英國大選結(jié)果的分組柱狀圖。

Bar chart of British election data我從維基百科上整理了英國選舉史的數(shù)據(jù)集:從 1966 年到 2019 年,保守黨、工黨和自由黨(廣義)在每次選舉中贏得的英國議會(huì)席位數(shù),加上“其他”贏得的席位數(shù)。你可以以 CSV 文件格式下載它。

Matplotlib

Matplotlib 是最古老的 Python 繪圖庫,現(xiàn)在仍然是最流行的。它創(chuàng)建于 2003 年,是 SciPy Stack 的一部分,SciPy Stack 是一個(gè)類似于 Matlab 的開源科學(xué)計(jì)算庫。

Matplotlib 為你提供了對(duì)繪制的精確控制。例如,你可以在你的條形圖中定義每個(gè)條形圖的單獨(dú)的 X 位置。下面是繪制這個(gè)圖表的代碼(你可以在這里運(yùn)行):

 
 
 
 
  1. import matplotlib.pyplot as plt 
  2.    import numpy as np 
  3.    from votes import wide as df 
  4.    # Initialise a figure. subplots() with no args gives one plot. 
  5.    fig, ax = plt.subplots() 
  6.    # A little data preparation 
  7.    years = df['year'] 
  8.    x = np.arange(len(years)) 
  9.    # Plot each bar plot. Note: manually calculating the 'dodges' of the bars 
  10.    ax.bar(x - 3*width/2, df['conservative'], width, label='Conservative', color='#0343df') 
  11.    ax.bar(x - width/2, df['labour'], width, label='Labour', color='#e50000') 
  12.    ax.bar(x + width/2, df['liberal'], width, label='Liberal', color='#ffff14') 
  13.    ax.bar(x + 3*width/2, df['others'], width, label='Others', color='#929591') 
  14.    # Customise some display properties 
  15.    ax.set_ylabel('Seats') 
  16.    ax.set_title('UK election results') 
  17.    ax.set_xticks(x)    # This ensures we have one tick per year, otherwise we get fewer 
  18.    ax.set_xticklabels(years.astype(str).values, rotation='vertical') 
  19.    ax.legend() 
  20.    # Ask Matplotlib to show the plot 
  21.    plt.show() 

這是用 Matplotlib 繪制的選舉結(jié)果:

Matplotlib plot of British election data

Seaborn

Seaborn 是 Matplotlib 之上的一個(gè)抽象層;它提供了一個(gè)非常整潔的界面,讓你可以非常容易地制作出各種類型的有用繪圖。

不過,它并沒有在能力上有所妥協(xié)!Seaborn 提供了訪問底層 Matplotlib 對(duì)象的逃生艙口,所以你仍然可以進(jìn)行完全控制。

Seaborn 的代碼比原始的 Matplotlib 更簡單(可在此處運(yùn)行):

 
 
 
 
  1. import seaborn as sns 
  2. from votes import long as df 
  3. # Some boilerplate to initialise things 
  4. sns.set() 
  5. plt.figure() 
  6. # This is where the actual plot gets made 
  7. ax = sns.barplot(data=df, x="year", y="seats", hue="party", palette=['blue', 'red', 'yellow', 'grey'], saturation=0.6) 
  8. # Customise some display properties 
  9. ax.set_title('UK election results') 
  10. ax.grid(color='#cccccc') 
  11. ax.set_ylabel('Seats') 
  12. ax.set_xlabel(None) 
  13. ax.set_xticklabels(df["year"].unique().astype(str), rotation='vertical') 
  14. # Ask Matplotlib to show it 
  15. plt.show() 

并生成這樣的圖表:

Seaborn plot of British election data

Plotly

Plotly 是一個(gè)繪圖生態(tài)系統(tǒng),它包括一個(gè) Python 繪圖庫。它有三個(gè)不同的接口:

  • 一個(gè)面向?qū)ο蟮慕涌凇?/li>
  • 一個(gè)命令式接口,允許你使用類似 JSON 的數(shù)據(jù)結(jié)構(gòu)來指定你的繪圖。
  • 類似于 Seaborn 的高級(jí)接口,稱為 Plotly Express。

Plotly 繪圖被設(shè)計(jì)成嵌入到 Web 應(yīng)用程序中。Plotly 的核心其實(shí)是一個(gè) JavaScript 庫!它使用 D3 和 stack.gl 來繪制圖表。

你可以通過向該 JavaScript 庫傳遞 JSON 來構(gòu)建其他語言的 Plotly 庫。官方的 Python 和 R 庫就是這樣做的。在 Anvil,我們將 Python Plotly API 移植到了 Web 瀏覽器中運(yùn)行。

這是使用 Plotly 的源代碼(你可以在這里運(yùn)行):

 
 
 
 
  1. import plotly.graph_objects as go 
  2.     from votes import wide as df 
  3.     #  Get a convenient list of x-values 
  4.     years = df['year'] 
  5.     x = list(range(len(years))) 
  6.     # Specify the plots 
  7.     bar_plots = [ 
  8.         go.Bar(xx=x, y=df['conservative'], name='Conservative', marker=go.bar.Marker(color='#0343df')), 
  9.         go.Bar(xx=x, y=df['labour'], name='Labour', marker=go.bar.Marker(color='#e50000')), 
  10.         go.Bar(xx=x, y=df['liberal'], name='Liberal', marker=go.bar.Marker(color='#ffff14')), 
  11.         go.Bar(xx=x, y=df['others'], name='Others', marker=go.bar.Marker(color='#929591')), 
  12.     ] 
  13.     # Customise some display properties 
  14.     layout = go.Layout( 
  15.         title=go.layout.Title(text="Election results", x=0.5), 
  16.         yaxis_title="Seats", 
  17.         xaxis_tickmode="array", 
  18.         xaxis_tickvals=list(range(27)), 
  19.         xaxis_ticktext=tuple(df['year'].values), 
  20.     ) 
  21.     # Make the multi-bar plot 
  22.     fig = go.Figure(data=bar_plots, layoutlayout=layout) 
  23.     # Tell Plotly to render it 
  24.     fig.show() 

Bokeh

Bokeh(發(fā)音為 “BOE-kay”)擅長構(gòu)建交互式繪圖,所以這個(gè)標(biāo)準(zhǔn)的例子并沒有將其展現(xiàn)其最好的一面。和 Plotly 一樣,Bokeh 的繪圖也是為了嵌入到 Web 應(yīng)用中,它以 HTML 文件的形式輸出繪圖。

下面是使用 Bokeh 的代碼(你可以在這里運(yùn)行):

 
 
 
 
  1. from bokeh.io import show, output_file 
  2.    from bokeh.models import ColumnDataSource, FactorRange, HoverTool 
  3.    from bokeh.plotting import figure 
  4.    from bokeh.transform import factor_cmap 
  5.    from votes import long as df 
  6.    # Specify a file to write the plot to 
  7.    output_file("elections.html") 
  8.    # Tuples of groups (year, party) 
  9.    x = [(str(r[1]['year']), r[1]['party']) for r in df.iterrows()] 
  10.    y = df['seats'] 
  11.    # Bokeh wraps your data in its own objects to support interactivity 
  12.    source = ColumnDataSource(data=dict(xx=x, yy=y)) 
  13.    # Create a colourmap 
  14.    cmap = { 
  15.        'Conservative': '#0343df', 
  16.        'Labour': '#e50000', 
  17.        'Liberal': '#ffff14', 
  18.        'Others': '#929591', 
  19.    } 
  20.    fill_color = factor_cmap('x', palette=list(cmap.values()), factors=list(cmap.keys()), start=1, end=2) 
  21.    # Make the plot 
  22.    p = figure(x_range=FactorRange(*x), width=1200, title="Election results") 
  23.    p.vbar(x='x', top='y', width=0.9, sourcesource=source, fill_colorfill_color=fill_color, line_color=fill_color) 
  24.    # Customise some display properties 
  25.    p.y_range.start = 0 
  26.    p.x_range.range_padding = 0.1 
  27.    p.yaxis.axis_label = 'Seats' 
  28.    p.xaxis.major_label_orientation = 1 
  29.    p.xgrid.grid_line_color = None 

圖表如下:

Bokeh plot of British election data

Altair

Altair 是基于一種名為 Vega 的聲明式繪圖語言(或“可視化語法”)。這意味著它具有經(jīng)過深思熟慮的 API,可以很好地?cái)U(kuò)展復(fù)雜的繪圖,使你不至于在嵌套循環(huán)的地獄中迷失方向。

與 Bokeh 一樣,Altair 將其圖形輸出為 HTML 文件。這是代碼(你可以在這里運(yùn)行):

 
 
 
 
  1. import altair as alt 
  2.     from votes import long as df 
  3.     # Set up the colourmap 
  4.     cmap = { 
  5.         'Conservative': '#0343df', 
  6.         'Labour': '#e50000', 
  7.         'Liberal': '#ffff14', 
  8.         'Others': '#929591', 
  9.     } 
  10.     # Cast years to strings 
  11.     df['year'] = df['year'].astype(str) 
  12.     # Here's where we make the plot 
  13.     chart = alt.Chart(df).mark_bar().encode( 
  14.         x=alt.X('party', title=None), 
  15.         y='seats', 
  16.         column=alt.Column('year', sort=list(df['year']), title=None), 
  17.         color=alt.Color('party', scale=alt.Scale(domain=list(cmap.keys()), range=list(cmap.values()))) 
  18.     ) 
  19.     # Save it as an HTML file. 
  20.     chart.save('altair-elections.html') 

結(jié)果圖表:

Altair plot of British election dataPygal

Pygal

專注于視覺外觀。它默認(rèn)生成 SVG 圖,所以你可以無限放大它們或打印出來,而不會(huì)被像素化。Pygal 繪圖還內(nèi)置了一些很好的交互性功能,如果你想在 Web 應(yīng)用中嵌入繪圖,Pygal 是另一個(gè)被低估了的候選者。

代碼是這樣的(你可以在這里運(yùn)行它):

 
 
 
 
  1. import pygal 
  2.    from pygal.style import Style 
  3.    from votes import wide as df 
  4.    # Define the style 
  5.    custom_style = Style( 
  6.        colors=('#0343df', '#e50000', '#ffff14', '#929591') 
  7.        font_family='Roboto,Helvetica,Arial,sans-serif', 
  8.        background='transparent', 
  9.        label_font_size=14, 
  10.    ) 
  11.    # Set up the bar plot, ready for data 
  12.    c = pygal.Bar( 
  13.        title="UK Election Results", 
  14.        style=custom_style, 
  15.        y_title='Seats', 
  16.        width=1200, 
  17.        x_label_rotation=270, 
  18.    ) 
  19.    # Add four data sets to the bar plot 
  20.    c.add('Conservative', df['conservative']) 
  21.    c.add('Labour', df['labour']) 
  22.    c.add('Liberal', df['liberal']) 
  23.    c.add('Others', df['others']) 
  24.    # Define the X-labels 
  25.    c.x_labels = df['year'] 
  26.    # Write this to an SVG file 
  27.    c.render_to_file('pygal.svg') 

繪制結(jié)果:

Pygal plot of British election data

Pandas

Pandas 是 Python 的一個(gè)極其流行的數(shù)據(jù)科學(xué)庫。它允許你做各種可擴(kuò)展的數(shù)據(jù)處理,但它也有一個(gè)方便的繪圖 API。因?yàn)樗苯釉跀?shù)據(jù)幀上操作,所以 Pandas 的例子是本文中最簡潔的代碼片段,甚至比 Seaborn 的代碼還要短!

Pandas API 是 Matplotlib 的一個(gè)封裝器,所以你也可以使用底層的 Matplotlib API 來對(duì)你的繪圖進(jìn)行精細(xì)的控制。

這是 Pandas 中的選舉結(jié)果圖表。代碼精美簡潔!

 
 
 
 
  1. from matplotlib.colors import ListedColormap 
  2.  from votes import wide as df 
  3.  cmap = ListedColormap(['#0343df', '#e50000', '#ffff14', '#929591']) 
  4.  ax = df.plot.bar(x='year', colormap=cmap) 
  5.  ax.set_xlabel(None) 
  6.  ax.set_ylabel('Seats') 
  7.  ax.set_title('UK election results') 
  8.  plt.show() 

繪圖結(jié)果:

Pandas plot of British election data要運(yùn)行這個(gè)例子,請(qǐng)看這里。

以你的方式繪制

Python 提供了許多繪制數(shù)據(jù)的方法,無需太多的代碼。雖然你可以通過這些方法快速開始創(chuàng)建你的繪圖,但它們確實(shí)需要一些本地配置。如果需要,Anvil 為 Python 開發(fā)提供了精美的 Web 體驗(yàn)。祝你繪制愉快!


標(biāo)題名稱:用Python繪制數(shù)據(jù)的7種流行的方法
文章轉(zhuǎn)載:http://www.dlmjj.cn/article/dhpioip.html