博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Python Cookbook] Pandas: Indexing of DataFrame
阅读量:5235 次
发布时间:2019-06-14

本文共 509 字,大约阅读时间需要 1 分钟。

Selecting a Row

df.loc[index] # if index is a string, add ' '; if index is a number, no ' '

or

df.iloc[row_num]

 

Selecting a Column

df['col_name']

Or

df.col_name

 

Selecting an Element

df.loc[index, 'col_name']

Selecting Multiple Discontinuous Rows

df.loc[[row_num1, row_num2, ...]] # can't use df.iloc here

Or 

df.loc[bool_expr]

 E.g.

nyc[nyc.cand_nm.isin(df11 p.cand nm)]nyc[nyc.cand_nm.isnull()]nyc[nyc.cand_nm.isnull()]nyc[nyc.contb_receipt_amt >0]

 

转载于:https://www.cnblogs.com/sherrydatascience/p/10360730.html

你可能感兴趣的文章
关于收费软件
查看>>
getopt_long
查看>>
TensorFlow MNIST CNN 代码
查看>>
javascript之Style物
查看>>
JSON跨域解决方案收集
查看>>
SSH框架整合总结
查看>>
图的深度优先遍历
查看>>
C# 之 提高WebService性能大数据量网络传输处理
查看>>
md5sum命令详解
查看>>
[bzoj1004] [HNOI2008] Cards
查看>>
应该是实例化对象的没有对属性赋值时,自动赋值为null,但不是空指针对象引用...
查看>>
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>