Georg Heiler
Georg Heiler

Reputation: 17676

Pandas NaN introduced by pivot_table

I have a table containing some countries and their KPI from the world-banks API. this looks like no nan values present. As you can see no nan values are present.

However, I need to pivot this table to bring int into the right shape for analysis. A pd.pivot_table(countryKPI, index=['germanCName'], columns=['indicator.id']) For some e.g. TUERKEI this works just fine:

for turkey it works But for most of the countries strange nan values are introduced. How can I prevent this?

strange nan values

Upvotes: 17

Views: 52299

Answers (3)

S2000NOW
S2000NOW

Reputation: 1

I would do this:

piv_out = pd.pivot_table(countryKPI, index=['germanCName'], columns=['indicator.id'])

print(piv_out.to_string(na_rep=""))

Upvotes: 0

jezrael
jezrael

Reputation: 862741

I think the best way to understand pivoting is to apply it to a small sample:

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

If need replace NaN to 0 add parameter 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

Upvotes: 35

Arpan Saini
Arpan Saini

Reputation: 5191

As per documentations:

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

pivot method returns: reshaped DataFrame.

Now you can replace the na values with any desired values, using fillna method.

FOR EXAMPLE:

MY PIVOT RETURNS THE BELOW dataFrame:

PIVOT RETURN DATA TYPE Now I want to replace the Nan with 0, I will apply the fillna() method on the returned data frame from pivot method

DATA FRAME RETURN AFTER REPLACING Nan values with 0

Upvotes: -2

Related Questions