日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

Pandas是Python第三方庫,提供高性能易用數(shù)據(jù)類型和分析工具,pandas 是基于NumPy 的一種工具,該工具是為了解決數(shù)據(jù)分析任務(wù)而創(chuàng)建的。Pandas 納入了大量庫和一些標(biāo)準(zhǔn)的數(shù)據(jù)模型,提供了高效地操作大型數(shù)據(jù)集所需的工具。pandas提供了大量能使我們快速便捷地處理數(shù)據(jù)的函數(shù)和方法。

與numpy對比區(qū)別:

數(shù)據(jù)分析-pandas庫快速了解

image

2.pandas庫怎么用

安裝

pip install pandas

導(dǎo)入

import pandas as pd

3.pandas兩個(gè)數(shù)據(jù)類型

兩個(gè)數(shù)據(jù)類型:Series, DataFrame

Series類型

Series類型由一組數(shù)據(jù)及與之相關(guān)的數(shù)據(jù)索引組成

數(shù)據(jù)分析-pandas庫快速了解

image

第一列的0,1,2,3是自動索引,第二列是實(shí)際數(shù)據(jù)值,最后的dtype表示數(shù)據(jù)類型

數(shù)據(jù)分析-pandas庫快速了解

image

Series類型數(shù)據(jù)的常見創(chuàng)建方式

python列表

數(shù)據(jù)分析-pandas庫快速了解

image

標(biāo)量值

數(shù)據(jù)分析-pandas庫快速了解

image

python字典

數(shù)據(jù)分析-pandas庫快速了解

image

ndarray

數(shù)據(jù)分析-pandas庫快速了解

image

Series類型數(shù)據(jù)的基本操作

獲得索引和數(shù)據(jù)

數(shù)據(jù)分析-pandas庫快速了解

image

更改索引

數(shù)據(jù)分析-pandas庫快速了解

image

索引

數(shù)據(jù)分析-pandas庫快速了解

image

切片

數(shù)據(jù)分析-pandas庫快速了解

image

DataFrame類型

DataFrame類型由共用相同索引的一組列組成,是一個(gè)表格型的數(shù)據(jù)類型,每列值類型可以不同,既有行索引、也有列索引,常用于表達(dá)二維數(shù)據(jù)。

數(shù)據(jù)分析-pandas庫快速了解

image

數(shù)據(jù)分析-pandas庫快速了解

image

DataFrame類型數(shù)據(jù)的常見創(chuàng)建方式

二維ndarray對象

數(shù)據(jù)分析-pandas庫快速了解

image

一維ndarray、列表、字典、元組或Series構(gòu)成的字典

數(shù)據(jù)分析-pandas庫快速了解

image

數(shù)據(jù)分析-pandas庫快速了解

image

數(shù)據(jù)分析-pandas庫快速了解

image

DataFrame類型數(shù)據(jù)的基本操作

獲得行列索引和數(shù)據(jù)

數(shù)據(jù)分析-pandas庫快速了解

image

更改行列索引

數(shù)據(jù)分析-pandas庫快速了解

image

選擇數(shù)據(jù)

索引切片獲取列數(shù)據(jù)和單個(gè)數(shù)據(jù)

數(shù)據(jù)分析-pandas庫快速了解

image

索引切片獲取行數(shù)據(jù)

數(shù)據(jù)分析-pandas庫快速了解

image

iloc():按照索引的位置來選取,這里要注意這種方式是包含切片的末尾的數(shù)據(jù)的

數(shù)據(jù)分析-pandas庫快速了解

image

loc():按照索引index的值選取,如果沒有自定義值,行數(shù)據(jù)也可以通過切片獲取。

數(shù)據(jù)分析-pandas庫快速了解

image

數(shù)據(jù)分析-pandas庫快速了解

image

數(shù)據(jù)分析-pandas庫快速了解

image

4.查看數(shù)據(jù)

數(shù)據(jù)分析-pandas庫快速了解

imag數(shù)據(jù)分析-pandas庫快速了解e

5.文件數(shù)據(jù)讀取和保存

保存

數(shù)據(jù)分析-pandas庫快速了解

image

讀取

這里多了一列數(shù)據(jù)是因?yàn)樯厦鎸懭霑r(shí)把索引寫入了,可以再寫入時(shí)去掉index,to_csv(file,index=False)

數(shù)據(jù)分析-pandas庫快速了解

image

限于篇幅原因,還有更多內(nèi)容(空值處理,分組,合并,排序,刪除等),這個(gè)會在后面的具體場景中應(yīng)用。

分享到:
標(biāo)簽:pandas
用戶無頭像

網(wǎng)友整理

注冊時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運(yùn)動步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定