Issue
Is it possible to suppress the array output when plotting a histogram in ipython?:
For example:
plt.hist(OIR['Range'], bins, named=True, histtype='bar')
outputs/prints the array information before displaying the graph.
Solution
Assign the return value to a variable (which I call _
to indicate it's unused):
_ = plt.hist(...)
Answered By - NPE
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.