How do I turn off verbose output on Python Plot.ly subplots

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?

Hi @prasadostwal,

fig = tools.make_subplots(rows=2, cols=2,...
                          print_grid=False)

does the job :slight_smile:

2 Likes

Hey @empet !

Worked! Thanks for quick solution :slight_smile: