What's the easiest way to produce a figure like this one? The curve is meant to look wiggly and random, and always non-increasing, except for the jumps up. I have tried using decorations with random steps, but that doesn't look right and is sometimes increasing. I have also tried a plot with a lot of individual coordinates that I generated randomly, but that didn't look smooth enough.
I'm happy to use either plain TikZ or pgfplots.

Edit: Here are two attempts.
The first uses random steps decoration, but the plot isn't smooth and it sometimes is increasing. I tried a few different amplitudes.
\documentclass{standalone}
\usepackage{tikz}
\pgfplotsset{compat=1.10}
\begin{document}
\begin{tikzpicture}
\draw[->] (0,0) -- (10,0);
\draw[->] (0,0) -- (0,5);
\draw [decorate, decoration={random steps,amplitude=2pt}] (0.2,4) -- (3,1);
\draw (3,1) -- (3,5);
\draw [decorate, decoration={random steps,amplitude=5pt}] (3,5) -- (5,0.2);
\draw (5,0.2) -- (5,3);
\draw [decorate, decoration={random steps,amplitude=8pt}] (5,3) -- (8,1.5);
\draw (8,1.5) -- (8,4);
\draw [decorate, decoration={random steps,amplitude=5pt}] (8,4) -- (9,3.5);
\useasboundingbox (-1,-1) rectangle (11,6);
\end{tikzpicture}
\end{document}

The second attempt uses pgfplots with lots of finely spaced coordinates (which I generated randomly in Excel). This one is closer, but too fine-grained and not smooth enough.
\documentclass{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.10}
\begin{document}
\begin{tikzpicture}
\begin{axis} [
axis lines=left,
xtick=\empty,
ytick=\empty,
]
\addplot [mark size=0]
coordinates {
(0.2,4)
(0.245550438070978,3.9189299356319)
(0.309894093387146,3.8555584914932)
(0.374626991695131,3.77679077960278)
(0.380585874068229,3.74823005668191)
... you get the idea ...
(11.2737449020538,2.23155401800146)
(11.2994722948852,2.22522905911657)
(11.3669785475168,2.17668213475497)
};
\end{axis}
\end{tikzpicture}
\end{document}



