Skip to content

Track dataframe manually through python expression #68

@willeppy

Description

@willeppy

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions