We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Pandas returns the wrong result for the operation 0/y where y is a dataframe or series of non-zero values:
import pandas as pd y=pd.Series(range(1,10)) print 0/y # wrong
However, this operation would work:
for i in y:print 0/i # correct
I'm using Pandas 0.15.2-1.