When you want to update plotting parameters in python using mpl.rcParams.update(params), it prints an array to the number of plots you have, say if you use hist for 12 parameters you get an array of 12 lines as
array([[<matplotlib.axes._subplots.AxesSubplot object at 0x1a1d27fc50>,
<matplotlib.axes._subplots.AxesSubplot object at 0x1a1d6292e8>,
<matplotlib.axes._subplots.AxesSubplot object at 0x1a1d63b6d8>],
[<matplotlib.axes._subplots.AxesSubplot object at 0x1a1e922c50>,
<matplotlib.axes._subplots.AxesSubplot object at 0x1a1e955208>,
<matplotlib.axes._subplots.AxesSubplot object at 0x1a1e97c780>],
[<matplotlib.axes._subplots.AxesSubplot object at 0x1a1e9a3cf8>,
<matplotlib.axes._subplots.AxesSubplot object at 0x1a1e9d52e8>,
<matplotlib.axes._subplots.AxesSubplot object at 0x1a1e9d5320>],
[<matplotlib.axes._subplots.AxesSubplot object at 0x1a1ea25da0>,
<matplotlib.axes._subplots.AxesSubplot object at 0x1a1ea55358>,
<matplotlib.axes._subplots.AxesSubplot object at 0x1a1ea7d8d0>]],
dtype=object)
How can I avoid/suppress this being printed in jupyter notebook.
Sample Code:
params = {'axes.titlesize':'60', 'xtick.labelsize':'24', 'ytick.labelsize':'24'}
mpl.rcParams.update(params);
data.hist(figsize=(50, 30), bins=10)