python中loc是什么

图片[1]-python中loc是什么-uusu优素-乐高,模型,3d打印,编程

loc中的数据是列名,是字符串,所以前后都要取;iloc中数据是int整型,所以是Python默认的前闭后开

loc函数

构建数据集df

importpandasaspd
df=pd.DataFrame([
['green','M',10.1,'class1'],
['red','L',13.5,'class2'],
['blue','XL',15.3,'class1']])
print(df)
#数据集为以下内容,所有操作均对df进行
0123
0greenM10.1class1
1redL13.5class2
2blueXL15.3class1

loc函数主要通过行标签索引行数据,划重点,标签!标签!标签!
loc[1] 选择行标签是1的(从0、1、2、3这几个行标签中)

In[1]:df.loc[1]
Out[1]:0red
1L
213.5
3class2
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容