Is there a way to make a matplotlib figure to show uniformly on different screen sizes and resolutions? For example, I want my figure to be displayed full screen on a 12.3" 2736x1824 monitor and a 24" 1080p monitor. This is done easily in Matlab using normalized coordinates:
figure('units','normalized','outerposition',[0 0 1 1])
Is these something similar in matplotlib?