I’m using Plot.ly python subplots.
I’ve written below line for creating subplot traces. It works fine.
fig = tools.make_subplots(rows=2, cols=2)
However, it spews out various informational messages like below on python console:
This is the format of your plot grid:
[ (1,1) x1,y1 ] [ (1,2) x2,y2 ]
[ (2,1) x3,y3 ] [ (2,2) x4,y4 ]
I tried turning of python warning messages. Didn’t work. Neither found any parameter to turn off verbosity.
Any solution to get away with this verbose output?