Right now, I can only profile dataframes that exist in memory, however I would like to be able to track any expression that returns a dataframe
Example:
list_of_dfs = []
for i in range(4):
df_part_a = ...
df_part_b = ...
df_part_c = ...
list_of_dfs.append(pd.concat([df_part_a, df_part_b, df_part_c]))
I want to track list_of_dfs[0] but this is impossible for now
Right now, I can only profile dataframes that exist in memory, however I would like to be able to track any expression that returns a dataframe
Example:
I want to track
list_of_dfs[0]but this is impossible for now