由pivot_table引入的熊猫NaN

问题描述 投票:3回答:2

我有一个表格,其中包含一些国家及其来自世界银行API的KPI。这看起来像no nan values present。如您所见,没有纳米值存在。

但是,我需要调整此表以将int引入正确的形状以进行分析。一个pd.pivot_table(countryKPI, index=['germanCName'], columns=['indicator.id'])对于一些例如TUERKEI这很好用:

for turkey it works但是对于大多数国家来说,引入了奇怪的纳米值。我怎么能阻止这个?

strange nan values

python pandas pivot pivot-table nan
2个回答
8
投票

我认为最好的理解pivoting是小样本:

import pandas as pd
import numpy as np

countryKPI = pd.DataFrame({'germanCName':['a','a','b','c','c'],
                           'indicator.id':['z','x','z','y','m'],
                           'value':[7,8,9,7,8]})

print (countryKPI)
  germanCName indicator.id  value
0           a            z      7
1           a            x      8
2           b            z      9
3           c            y      7
4           c            m      8

print (pd.pivot_table(countryKPI, index=['germanCName'], columns=['indicator.id']))
             value               
indicator.id     m    x    y    z
germanCName                      
a              NaN  8.0  NaN  7.0
b              NaN  NaN  NaN  9.0
c              8.0  NaN  7.0  NaN

如果需要将NaN替换为0添加参数fill_value

print (countryKPI.pivot_table(index='germanCName', 
                              columns='indicator.id', 
                              values='value', 
                              fill_value=0))
indicator.id  m  x  y  z
germanCName             
a             0  8  0  7
b             0  0  0  9
c             8  0  7  0

0
投票

根据文件:

https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.pivot.html

pivot方法返回:重新整形的DataFrame。

现在,您可以使用fillna方法将na值替换为任何所需的值。

例如:

MY PIVOT返回以下数据框架:

PIVOT RETURN DATA TYPE现在我想用0替换Nan,我将从pivot方法对返回的数据帧应用fillna()方法

DATA FRAME RETURN AFTER REPLACING Nan values with 0

© www.soinside.com 2019 - 2024. All rights reserved.