dataframe:
data = {"Category":["Resource","Resource","Resource","Resource"],
    "Item1":["Bandwidth","Bandwidth","Bandwidth","Bandwidth"],
    "Item2":["DC","OC","DC","OC"],
    "Amount":[156.415,396.921,-156.415,-396.921]}
df = pd.DataFrame(data)
df = df.groupby(["Category","Item1"],as_index=False).sum()
print df
get the result:
   Category      Item1        Amount
0  Resource  Bandwidth  5.684342e-14
Why Amount not zero?How can I get the right result?
