I am having problems with this CodingBat question:
Given a list of integers, return the count of the negative values.
count
Turn it into a pd.DataFrame then use df[df>0].count()/len(df)
pd.DataFrame
df[df>0].count()/len(df)