Skip to content

Commit c7eb10e

Browse files
authored
debugging
1 parent 718c899 commit c7eb10e

File tree

1 file changed

+5
-0
lines changed
  • statistical_methods_library/imputation

1 file changed

+5
-0
lines changed

statistical_methods_library/imputation/engine.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -607,6 +607,10 @@ def impute_helper(
607607
"output AS other_output",
608608
"grouping AS other_grouping",
609609
)
610+
print("other_df")
611+
other_df.show()
612+
print("null_response_df")
613+
null_response_df.show()
610614
calculation_df = (
611615
null_response_df.join(
612616
other_df,
@@ -628,6 +632,7 @@ def impute_helper(
628632
"backward",
629633
)
630634
).localCheckpoint(eager=True)
635+
print(calculation_df.count())
631636
# If we've imputed nothing then we've got as far as we can get for
632637
# this phase.
633638
if calculation_df.count() == 0:

0 commit comments

Comments
 (0)