I have figures I want to plot, and I want the figures to be the same size despite having different ranges for the y-axis. Is it possible to automatically generate figures that are the same size, instead of manually resizing each one? I've found some similar issues but none of the solutions worked for my data.
a = Table[i, {i, 0, 10, 1}]; b = Table[i, {i, 0, 100000, 10000}]; c = Table[i, {i, 0, 1000000, 100000}]; abc = {a, b, c}; time = Table[i, {i, 0, 10, 1}]; yaxis = {"Values", "Larger Values", "The largest the world has ever seen"}; Grid[{Table[ ListLinePlot[Transpose[{time[[]], abc[[k]]}], Frame -> True, AspectRatio -> 1, ImageSize -> 250, FrameLabel -> {"time (h)", yaxis[[k]]}], {k, 1, Length[abc]}]}] 

ImagePaddingfor each plot? Something likeImagePadding -> {{60, 10}, {40, 0}}perhaps? $\endgroup$