午夜视频在线网站,日韩视频精品在线,中文字幕精品一区二区三区在线,在线播放精品,1024你懂我懂的旧版人,欧美日韩一级黄色片,一区二区三区在线观看视频

分享

Python處理Excel實(shí)例

 剩礦空錢 2023-10-17 發(fā)布于湖北

知識(shí)星球:寫代碼那些事

如果你有收獲|歡迎|點(diǎn)贊|關(guān)注|轉(zhuǎn)發(fā)

這里會(huì)定期更新|大廠的開發(fā)|架構(gòu)|方案設(shè)計(jì)

這里也會(huì)更新|如何摸魚|抓蝦

Python處理Excel實(shí)例

歡迎來到寫代碼那些事!Excel作為數(shù)據(jù)處理的常用工具,在大量數(shù)據(jù)處理場(chǎng)景中扮演著重要角色。本教程將帶你深入學(xué)習(xí)如何用Python完成Excel的常見操作,釋放數(shù)據(jù)處理的潛力。

Python處理Excel實(shí)例

目錄:

  1. 數(shù)據(jù)讀取與寫入:輕松打通Python與Excel
  2. 數(shù)據(jù)篩選與處理:快速清理和整理Excel數(shù)據(jù)
  3. 圖表與可視化:用Python為數(shù)據(jù)賦予更多生命
  4. 數(shù)據(jù)分析與計(jì)算:高效地在Excel中進(jìn)行統(tǒng)計(jì)和計(jì)算
  5. 自動(dòng)化報(bào)表生成:用Python打造智能Excel應(yīng)用

1. 數(shù)據(jù)讀取與寫入:輕松打通Python與Excel

在這一節(jié)中,我們將介紹如何使用Python庫(kù)來讀取和寫入Excel文件。我們會(huì)使用pandas庫(kù)來實(shí)現(xiàn)這些操作,讓你能夠輕松地將Python和Excel連接起來。

# 導(dǎo)入pandas庫(kù)import pandas as pd# 讀取Excel文件data = pd.read_excel('report.xlsx')# 寫入Excel文件data.to_excel('output.xlsx', index=False)
Python處理Excel實(shí)例

2. 數(shù)據(jù)篩選與處理:快速清理和整理Excel數(shù)據(jù)

在這一節(jié),我們將學(xué)習(xí)如何使用Python來進(jìn)行數(shù)據(jù)篩選和處理。通過pandas庫(kù)的強(qiáng)大功能,你可以輕松地進(jìn)行數(shù)據(jù)清理、重命名列名等操作。

# 數(shù)據(jù)篩選與處理示例import pandas as pd# 讀取Excel文件data = pd.read_excel('report.xlsx')filtered_data = data[data['銷售額'] > 1000]cleaned_data = data.dropna()# print filtered_dataprint('過濾后的數(shù)據(jù):')print(filtered_data)# print cleaned_dataprint('清洗后的數(shù)據(jù):')print(cleaned_data)
Python處理Excel實(shí)例

如果你對(duì),dropna這個(gè)函數(shù)有疑惑,請(qǐng)看下面得例子

>>> df = pd.DataFrame({'name': ['Alfred', 'Batman', 'Catwoman'],... 'toy': [np.nan, 'Batmobile', 'Bullwhip'],... 'born': [pd.NaT, pd.Timestamp('1940-04-25'),... pd.NaT]})>>> df name toy born0 Alfred NaN NaT1 Batman Batmobile 1940-04-252 Catwoman Bullwhip NaT

刪除至少缺少一個(gè)元素的行

>>> df.dropna()     name        toy       born1  Batman  Batmobile 1940-04-25

刪除至少缺少一個(gè)元素的列

>>> df.dropna(axis='columns') name0 Alfred1 Batman2 Catwoman

刪除所有元素都丟失的行

>>> df.dropna(how='all')       name        toy       born0    Alfred        NaN        NaT1    Batman  Batmobile 1940-04-252  Catwoman   Bullwhip        NaT

僅保留至少具有 2 個(gè)非 NA 值的行

>>> df.dropna(thresh=2) name toy born1 Batman Batmobile 1940-04-252 Catwoman Bullwhip NaT

定義在哪些列中查找缺失值

>>> df.dropna(subset=['name', 'toy'])       name        toy       born1    Batman  Batmobile 1940-04-252  Catwoman   Bullwhip        NaT

3. 圖表與可視化:用Python為數(shù)據(jù)賦予更多生命

數(shù)據(jù)可視化是數(shù)據(jù)分析的關(guān)鍵步驟。在這一節(jié),我們將展示如何使用Python庫(kù)來創(chuàng)建各種圖表,為數(shù)據(jù)賦予更多生命和表現(xiàn)力。

import openpyxlfrom openpyxl.drawing.image import Imageimport pandas as pdimport matplotlib.pyplot as pltimport io# 創(chuàng)建示例數(shù)據(jù)data = pd.DataFrame({ '產(chǎn)品': ['A', 'B', 'C'], '銷售額': [1000, 1500, 2000]})# 創(chuàng)建新的工作簿wb = openpyxl.Workbook()ws = wb.activews.title = '報(bào)告'# 添加數(shù)據(jù)到工作表ws.append(['產(chǎn)品', '銷售額'])for _, row in data.iterrows(): ws.append(row.tolist())# 創(chuàng)建柱狀圖plt.bar(data['產(chǎn)品'], data['銷售額'])plt.xlabel('產(chǎn)品')plt.ylabel('銷售額')plt.title('產(chǎn)品銷售額')plt.show()
Python處理Excel實(shí)例

4. 數(shù)據(jù)分析與計(jì)算:高效地進(jìn)行統(tǒng)計(jì)和計(jì)算

Python在數(shù)據(jù)分析方面有很強(qiáng)的能力。在這一節(jié),我們將展示如何使用pandas庫(kù)來進(jìn)行數(shù)據(jù)分析和計(jì)算,如統(tǒng)計(jì)平均值、總和等。

# 統(tǒng)計(jì)平均值和總和import openpyxlfrom openpyxl.drawing.image import Imageimport pandas as pdimport matplotlib.pyplot as pltimport io# 創(chuàng)建示例數(shù)據(jù)data = pd.DataFrame({    '產(chǎn)品': ['A', 'B', 'C'],    '銷售額': [1000, 1500, 2000],    '利潤(rùn)': [200, 300, 400]  # 添加利潤(rùn)數(shù)據(jù)列})# 創(chuàng)建新的工作簿wb = openpyxl.Workbook()ws = wb.activews.title = '報(bào)告'# 添加數(shù)據(jù)到工作表ws.append(['產(chǎn)品', '銷售額', '利潤(rùn)'])for _, row in data.iterrows():    ws.append(row.tolist())# 計(jì)算平均銷售額和總利潤(rùn)average_sales = data['銷售額'].mean()total_profit = data['利潤(rùn)'].sum()# 創(chuàng)建柱狀圖plt.bar(data['產(chǎn)品'], data['銷售額'])plt.xlabel('產(chǎn)品')plt.ylabel('銷售額')plt.title('產(chǎn)品銷售額')print('平均銷售額:', average_sales)print('總利潤(rùn):', total_profit)
Python處理Excel實(shí)例

5. 自動(dòng)化報(bào)表生成:用Python打造智能Excel應(yīng)用

在這一節(jié)中,我們將學(xué)習(xí)如何使用Python自動(dòng)化生成報(bào)表。通過openpyxl庫(kù),你可以在Excel中創(chuàng)建新的工作表、添加圖表,并實(shí)現(xiàn)自動(dòng)化報(bào)告生成。

import openpyxlfrom openpyxl.chart import LineChart, Referenceimport pandas as pd# 創(chuàng)建示例數(shù)據(jù)data = pd.DataFrame({ '日期': ['2023-01-01', '2023-01-02', '2023-01-03'], '銷售額': [1000, 1500, 2000]})# 創(chuàng)建新的工作簿wb = openpyxl.Workbook()ws = wb.activews.title = '報(bào)告'# 添加數(shù)據(jù)到工作表ws.append(['日期', '銷售額'])for _, row in data.iterrows(): ws.append(row.tolist()) # 將Series轉(zhuǎn)換為列表并添加到工作表# 創(chuàng)建折線圖chart = LineChart()chart.title = '銷售趨勢(shì)圖'chart.x_axis.title = '日期'chart.y_axis.title = '銷售額'# 設(shè)置圖表數(shù)據(jù)范圍data_ref = Reference(ws, min_col=2, min_row=2, max_col=2, max_row=len(data) 1)category_ref = Reference(ws, min_col=1, min_row=3, max_row=len(data) 1)chart.add_data(data_ref, titles_from_data=True)chart.set_categories(category_ref)# 添加圖表到工作表ws.add_chart(chart, 'E3')# 保存工作簿wb.save('report.xlsx')

總結(jié):

通過本教程,你已經(jīng)學(xué)會(huì)了如何使用Python完成Excel的常用操作,包括數(shù)據(jù)讀取、數(shù)據(jù)處理、數(shù)據(jù)可視化、數(shù)據(jù)分析以及自動(dòng)化報(bào)表生成。掌握這些技巧,你將能夠更高效地處理Excel中的數(shù)據(jù),并將其與Python的強(qiáng)大功能相結(jié)合,為數(shù)據(jù)處理提供更多可能性。讓Python成為你處理Excel數(shù)據(jù)的得力助手吧!

#python#?#excle#?#python處理excle

Python處理Excel實(shí)例

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多