This is how I am plotting
from matplotlib import pyplot
pyplot.figure();
pyplot.scatter(x=data[feat], y=data[target]);
pyplot.xlabel(feat);
pyplot.ylabel(target);
pyplot.show();
And I get output like
Figure size 432x288 with 0 Axes>
<matplotlib.collections.PathCollection at 0x7fd80c2fbf50>
Text(0.5,0,'Age1')
Text(0,0.5,'Target')
How can I suppress this output? The semicolon did not work. I am running this in a jupyter notebook.