一文秒懂pandas中iloc()函数
作者:方如一 时间:2023-07-31 18:20:42
pandas中iloc()函数
DataFrame.iloc
纯基于整数位置的索引。
import pandas as pd
mydict = [{'a': 1, 'b': 2, 'c': 3, 'd': 4},
{'a': 100, 'b': 200, 'c': 300, 'd': 400},
{'a': 1000, 'b': 2000, 'c': 3000, 'd': 4000 }]
'''mydict
[{'a': 1, 'b': 2, 'c': 3, 'd': 4},
{'a': 100, 'b': 200, 'c': 300, 'd': 400},
{'a': 1000, 'b': 2000, 'c': 3000, 'd': 4000}]'''
df = pd.DataFrame(mydict)
'''
df
abcd
01234
1100200300400
21000200030004000
'''
df.iloc[0]#取第0行
a 1
b 2
c 3
d 4
Name: 0, dtype: int64
df.iloc[0].shape
(4,)
type(df.iloc[0].shape)
tuple
df.iloc[[0]]
abcd
01234
type(df.iloc[[0]])
pandas.core.frame.DataFrame
df.iloc[[0,2]]#取第0、2行
a b c d
0 1 2 3 4
21000200030004000
df.iloc[0:2,0:3]#取0到1行和0到2列
a b c
0 1 2 3
1100200300
df.iloc[[True, False, True]]#不常用
a b c d
0 1 2 3 4
21000200030004000
df.iloc[lambda x: x.index % 2 == 0]#函数生成索引列表,x即df
a b c d
0 1 2 3 4
21000200030004000
Pandas库中iloc[ ]函数使用详解
1 iloc[]函数作用
iloc[]函数,属于pandas库,全称为index location,即对数据进行位置索引,从而在数据表中提取出相应的数据。
2 iloc函数使用
df.iloc[a,b],其中df是DataFrame数据结构的数据(表1就是df),a是行索引(见表1),b是列索引(见表1)。
姓名(列索引10) | 班级(列索引1) | 分数(列索引2) | |
0(行索引0) | 小明 | 302 | 87 |
1(行索引1) | 小王 | 303 | 95 |
2(行索引2) | 小方 | 303 | 100 |
1.iloc[a,b]:取行索引为a列索引为b的数据。
import pandas
df = pandas.read_csv('a.csv')
print(df.iloc[1,2])
#Out:95
2.iloc[a:b,c]:取行索引从a到b-1,列索引为c的数据。注意:在iloc中a:b是左到右不到的,即lioc[1:3,:]是从行索引从1到2,所有列索引的数据。
import pandas
df = pandas.read_csv('a.csv')
print(df.iloc[0:2,2]) #数据结构是Series
print(df.iloc[0:2,2].values) #数据结构是ndarray
#Out1:0 87
# 1 95
# Name: 分数, dtype: int64
#Out2:[87 95]
iloc[].values,用values属性取值,返回ndarray,但是单个数值无法用values函数读取。
3.iloc[a:b,c:d]:取行索引从a到b-1,列索引从c到d-1的数据。
import pandas
df = pandas.read_csv('a.csv')
print(df.iloc[0:2,0:2])
print(df.iloc[0:2,0:2].values)
#Out1: 姓名 班级
# 0 小明 302
# 1 小王 303
#Out2:[['小明' 302]
# ['小王' 303]]
4.iloc[a]:取取行索引为a,所有列索引的数据。
import pandas
df = pandas.read_csv('a.csv')
print(df.iloc[2])
print(df.iloc[2].values)
#Out1:姓名 小方
# 班级 303
# 分数 100
# Name: 2, dtype: object
#Out2:['小方' 303 100]
来源:https://blog.csdn.net/Fwuyi/article/details/123127754
标签:Pandas,iloc,函数
0
投稿
猜你喜欢
SQL 无法装载DLL Microsoft原因(无法修改sa密码)
2024-01-19 21:04:57
基于Vue.js的表格分页组件
2024-05-02 16:41:50
用原生js做单页应用
2024-04-16 09:51:27
教你怎么用Python操作MySql数据库
2024-01-13 06:46:48
vue中v-show和v-if的异同及v-show用法
2023-07-02 17:09:11
js神秘的电报密码 哈弗曼编码实现
2024-04-16 09:13:58
Python flask与fastapi性能测试方法介绍
2022-12-07 00:10:17
tensorflow 动态获取 BatchSzie 的大小实例
2023-03-05 16:56:48
Python OpenCV读取显示视频的方法示例
2023-07-02 16:13:42
利用pyshp包给shapefile文件添加字段的实例
2023-08-12 15:48:38
在SQL Server2000中恢复Master数据库
2008-01-05 14:05:00
PyQt5实现从主窗口打开子窗口的方法
2023-01-14 11:06:11
用python代码将tiff图片存储到jpg的方法
2021-11-24 19:54:49
JavaScript 函数惰性载入的实现及其优点介绍
2024-04-16 09:25:37
如何通过Python3和ssl实现加密通信功能
2022-04-28 05:55:30
系统高吞吐量下的数据库重复写入问题分析解决
2024-01-17 07:37:21
CentOS 7下安装与配置MySQL 5.7
2024-01-26 17:41:50
如何用ASP创建日志文件
2008-03-10 17:27:00
Python中的生成器和yield详细介绍
2022-11-11 12:34:24
Python基础之模块相关知识总结
2021-09-06 21:39:39