• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

  • 共95篇

    python3.X - 数据分析 - Pandas

关闭

返回栏目

关闭

返回python3.X - 数据分析 - Pandas栏目

64 - 选择数据 - df[df["A"] == "a"]] - 列A等于a的数据

作者:

贺及楼

成为作者

更新日期:2024-08-14 13:02:48

筛选条件

筛选列A等于a的数据

  1. import numpy as np
  2. import pandas as pd
  3. df = pd.DataFrame(data=[{"A":"1", "B":"3", "C":"4"}, {"A":"1", "B":"2", "C":"5"}, {"A":"2", "B":"1", "C":"6"}])
  4. df = pd.DataFrame(data=[{"A":1, "B":3, "C":4}, {"A":1, "B":2, "C":5}, {"A":2, "B":1, "C":6}])
A B C
0 1 3 4
1 1 2 5
2 2 1 6
  1. ## A列的值是a的全部数据
  2. df[df["A"] == 1]
A B C
0 1 3 4
1 1 2 5
  1. ## pandas取出包含某个值的所有行
  2. df = df[df["from_account"].str.contains("fcwhx")]
  3. ## pandas取出不包含某个值的所有行
  4. df = df[~df["from_account"].str.contains("不要的文字1", "不要的文字2")]
  5. df = df[df["from_account"].str.contains("fcwhx")==False]
  1. ## 如果有空值,报错:TypeError: bad operand type for unary ~: 'float'
  2. 则用这个方法
  3. df.other_group = df.other_group.fillna('####@')
  4. df2 = df[~df['other_group'].str.contains('####@')]