Crawford Collins
06/02/2020, 11:40 PMimputed_categorical_dfs
returns two objects. I need to merge these with another task which does the same.
My code which does not work.
transformed_df_map = merge_transformed_data.map(
df1=[*imputed_categorical_dfs, *encoded_df_map],
df2=[*imputed_numeric_dfs] + [*yeo_johnson_dfs],
)
Zachary Hughes
06/03/2020, 12:08 AMCrawford Collins
06/03/2020, 1:14 AMtransformed_df_map = merge_transformed_data.map(
df1=imputed_categorical_dfs + encoded_df_map,
df2=imputed_numeric_dfs + yeo_johnson_dfs
)
Zachary Hughes
06/03/2020, 1:36 AM