Is it possible to set the height and width of a plot in absolute units for in $\rm{cm}$? Ideally I'd specifically like to control the frame size for when the plot option Frame->True is set?
I've seen that you can set the size of the export plot in absolute units, but can't uncover anything where I can set the size of the frame and plot region explicitly in a notebook.

cm = 72/2.54 ; Plot[Sin[x], {x, 0, 2 Pi}, Frame -> True, ImageSize -> 1 -> 2 cm]roPlot[Sin[x], {x, 0, 2 Pi}, Frame -> True, ImageSize -> 1 -> {3 cm, cm}]. See this answer to a related question. – kglr Aug 14 '19 at 00:57