I want to have few outputs from one cell. For this I use:
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
Code is doing well, but it's giving me some unwanted data.
Out[1]: <Figure size 2500x800 with 0 Axes>
Out[1]: <matplotlib.axes._subplots.AxesSubplot at 0x1a22e8ca50>
Out[1]: Text(0.5, 1.0, 'Przetrwanie, (0 = Zmarli / 1 = Ocaleni)')
Out[1]: [Text(0, 0.5, 'Liczba')]
I can use some flag options like: 'all', 'last', 'last_expr', 'none', 'last_expr_or_assign'
but none of the options solves the problem :/
Any ideas ??