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](https://github.com/twosigma/beakerx_tabledisplay/files/8327101/circular.pickle.zip) ### Example using `circular.pickle` ```python import pandas import pickle ``` ```python frame = None with open('circular.pickle', 'rb') as pickled: frame = pickle.load(pickled) ``` ```python import beakerx_tabledisplay display(frame) ``` ### Behavior (video) https://user-images.githubusercontent.com/159529/159553424-919293e4-231b-4a4e-8e93-49663399fda8.mov
Some instances of
pandas.DataFramecannot be displayed in a notebook ifbeakerx_tabledisplayhas been loaded.Here is a
DataFramethat has been pickled that exhibits this behavior: circular.pickle.zipExample using
circular.pickleBehavior (video)
circular.mov