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.
1 parent b91b44e commit 8e0b07dCopy full SHA for 8e0b07d
src/sasctl/pzmm/write_json_files.py
@@ -1042,7 +1042,7 @@ def apply_dataframe_to_json(
1042
values from the SAS CAS percentile action set added in.
1043
"""
1044
for row_num in range(len(stat_df)):
1045
- row_dict = stat_df.iloc[row_num].to_dict()
+ row_dict = stat_df.iloc[row_num].replace(float("nan"), None).to_dict()
1046
json_dict[row_num + partition * len(stat_df)]["dataMap"].update(row_dict)
1047
return json_dict
1048
0 commit comments