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 718c899 commit c7eb10eCopy full SHA for c7eb10e
statistical_methods_library/imputation/engine.py
@@ -607,6 +607,10 @@ def impute_helper(
607
"output AS other_output",
608
"grouping AS other_grouping",
609
)
610
+ print("other_df")
611
+ other_df.show()
612
+ print("null_response_df")
613
+ null_response_df.show()
614
calculation_df = (
615
null_response_df.join(
616
other_df,
@@ -628,6 +632,7 @@ def impute_helper(
628
632
"backward",
629
633
630
634
).localCheckpoint(eager=True)
635
+ print(calculation_df.count())
631
636
# If we've imputed nothing then we've got as far as we can get for
637
# this phase.
638
if calculation_df.count() == 0:
0 commit comments