当前位置:   article > 正文

Pandas库:从入门到应用(二)--行列数据读写_pandas读取列

pandas读取列
一、Pandas 行列数据选取
1.1、获取列数据
1.1.1、获取单列数据
import numpy as np
import pandas as pd

df = pd.DataFrame(data=np.random.randint(1,151,size=(10,3)),
                   columns=['Python','Math','Chinese'])
df[['Python']] #获取Python列数据,输出为DataFrame类型
print(type(df[['Python']])) # class 'pandas.core.frame.DataFrame'
df['Python'] #获取Python列数据,输出为Series类型
df.Python  #获取Python列数据,输出为Series类型
print(type(df['Python'])) # class 'pandas.core.series.Series'
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
1.1.2、获取多列数据
df[['Python','Chinese']] # 通过列索引值直接获取Python,Chinese列数据,类型是DataFrame
  • 1

在这里插入图片描述

df[df.columns[0:2]]  #通过列索引的切片 来获取列,输出类型是DataFrame
  • 1

在这里插入图片描述

1.2、获取行数据
1.2.1、根据索引获取行
  • 获取前三行

    df[:3]
    df[0:3] #前开后闭
    
    • 1
    • 2

在这里插入图片描述

  • 获取第2行到第4行

    df[1:4] #前开后闭
    
    • 1

在这里插入图片描述

df['b':'d'] #通过行索引来获取
  • 1

在这里插入图片描述

  • 获取特定行数据

    df[[True,False,False,True,False,False,False,False,False,False]
    声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/1002602
    推荐阅读
    相关标签
      

    闽ICP备14008679号