Would it be possible to replace null values with 0 ? It would be the equivalent of the following code from pandas python lib ``` df = pd.DataFrame.from_records(result) df = df.fillna(0) ```