1. 程式人生 > 其它 >python pandas 某列取出某值_Python = 69/365

python pandas 某列取出某值_Python = 69/365

技術標籤:python pandas 某列取出某值

Python=69/365

Python的資料分析重要的庫Pandas。今日關注Pandas讀取Excel檔案的資料。

7add48e9767a3e970fea12799c994738.gif

日更不停,你看行不行?

我帶著你,你帶著PythonFlag,共勉!

No.1 開啟Excel檔案

read_excel('檔案路徑','工作表名')開啟Excel某一工作表。

在某路徑中工作簿Book1.xlsx的Sheet1的內容如下圖所示。

cee19ad3e5a84f4649768f67e4eb414d.png

通過read_excel讀入工作表:

>>> import pandas as pd>>> df = pd.read_excel('/Users/daisy/Book1.xlsx', 'Sheet1')
>>> df Unnamed: 0 Algorithm 1 Algorithm 2 Algorithm 3 Algorithm 40 N=10 0.000004 0.000003 0.000002 0.0000001 N=100 0.000434 0.000012 0.000009 0.0000012 N=1000 0.329234 0.001239 0.000073 0.0000063 N=10000 317.404364 0.092934 0.000757 0.000047
No.2引用特定列
>>> df = pd.read_excel('/Users/daisy/Book1.xlsx', 'Sheet1',usecols=['Algorithm 1'])>>> df   Algorithm 10     0.0000041     0.0004342     0.3292343   317.404364
read_excel('檔案路徑','工作表名',usecols=['列名']) 開啟Excel某一工作簿的工作表中的某列。
>>> df = pd.read_excel('/Users/daisy/Book1.xlsx', 'Sheet1',usecols=['Algorithm 1','Algorithm 3'])>>> df   Algorithm 1  Algorithm 30     0.000004     0.0000021     0.000434     0.0000092     0.329234     0.0000733   317.404364     0.000757
No.3日期強制轉換

parse_dates=[’列名']把疑似是日期的強制轉換為日期格式

>>> df = pd.read_excel('/Users/daisy/Book1.xlsx', 'Sheet2',parse_dates=['date_strings'])>>> df  date_strings  Algorithm 1  Algorithm 2  Algorithm 3  Algorithm 40   2020-09-23     0.000004     0.000003     0.000002     0.0000001   2020-09-24     0.000434     0.000012     0.000009     0.0000012   2020-09-25     0.329234     0.001239     0.000073     0.0000063   2020-09-26   317.404364     0.092934     0.000757     0.000047
Sheet2內容:

97f6e0ccb9279cd668134f0252dc7a4d.png

說過的話還記得嗎?理想,一生所向!

88606bafb26489294f77a8e949c9f8e5.png

  • Python365專輯

Python,365! dec83926e420f37f584afed3cddf3c97.png 996c4da0a36f1b169be44bf24e2512ec.png 2aa99913d8ebadfc2d8bd7da8e98bcc4.png