sfu-db / dataprep

Open-source low code data preparation library in python. Collect, clean and visualization your data in python with a few lines of code.
http://dataprep.ai
MIT License
1.98k stars 203 forks source link

Plotting moves all my Jupyter formatting to the extreme right #926

Closed PedroMartinez4 closed 1 year ago

PedroMartinez4 commented 1 year ago

Whenever I run any plotting function like plot() or plot_diff() the graph output is weirdly placed off to the right of the screen, and also moves all my markdown cells to the right. Like so:

image

This is my code

from dataprep.eda import plot

fig = plot(data)
fig.show_browser()

How can I get a left justified output?