Saving Matplotlib graphs to image as full screen

后端 未结 5 2074
清酒与你
清酒与你 2020-12-01 03:54

I\'m building a small graphing utility using Pandas and MatPlotLib to parse data and output graphs from a machine at work.

When I output the graph using

<         


        
5条回答
  •  Happy的楠姐
    2020-12-01 04:19

    For those that receive errors in the answers above, this has worked for me.

    #Show full screen
    mng = plt.get_current_fig_manager()
    mng.full_screen_toggle()
    

提交回复
热议问题