Rui Loureiro
10/03/2019, 6:16 PMChris White
10/03/2019, 6:19 PMRui Loureiro
10/03/2019, 6:21 PMChris White
10/03/2019, 6:21 PMjosh
10/03/2019, 6:24 PMRui Loureiro
10/04/2019, 11:03 AMdef specific_df_operation(df):
foo = []
for col in df.cols:
foo.append(specific_col_operation(col))
# do something with foo
specific_df_operation
depends on computing specific_col_operation
for every column in the dataframe.
However, it is not really feasible to have all these dependencies as argument to specific_df_operation
.
I'm not sure if Prefect has a way to accomplish this.Dylan
10/04/2019, 1:45 PM