Mark Krautheim

Results 2 comments of Mark Krautheim

This line before the loop will clear out any rows that have null data in *any* column: ``` hqm_dataframe.dropna(inplace=True) ```

I think we're looking at different loops. I'm suggesting you replace your `hqm_dataframe.replace(to_replace=[None], value=0, inplace=True)` with `hqm_dataframe.dropna(inplace=True)`.