Skip to content

Causes circular reference in some DataFrames #74

@afshin

Description

@afshin

Some instances of pandas.DataFrame cannot be displayed in a notebook if beakerx_tabledisplay has been loaded.

Here is a DataFrame that has been pickled that exhibits this behavior: circular.pickle.zip

Example using circular.pickle

import pandas
import pickle
frame = None
with open('circular.pickle', 'rb') as pickled:
    frame = pickle.load(pickled)
import beakerx_tabledisplay
display(frame)

Behavior (video)

circular.mov

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions