I would like to create plot similiar to this:

where significands are on y-axis, while $ \times 10^{4} $ is above the plot (or could be placed at any place in graph). So far I managed to get only exponent right, using this code:
f[x_] := 100 Exp[x] Sin[20 x];
ymax = 1.5*^4;
ymin = -1.5*^4;
xticks = {#, #} & /@ Range[0, 5, 0.5];
yticks =
Map[
{#, NumberForm[#, {3, 1}, ExponentFunction -> (4 &)]} &,
N[FindDivisions[{ymin, ymax}, 6]]];
Plot[f[x], {x, 0, 5},
PlotRange -> {{0, 5}, {ymin, ymax}},
Frame -> True,
FrameTicks -> {{yticks, None}, {xticks, None}},
Axes -> False]
I will be grateful for any help.






PacletInstallworked fine but is mysterious to me. I was hoping to get a file to use permanently. Perhaps my ignorance ofPacletInstallis the source of confusion. When I did that did a package "GraphicsInformation" get put on my path? – Jack LaVigne Jan 09 '18 at 02:41