I use the RandomFunction to generate a continuous random function (trying to model a rough surface):
r = RandomFunction[WienerProcess[0, 1], {0, 10, 0.01}]; ListLinePlot[r, Filling -> Axis, AxesOrigin -> {0, 0}] I'm able to plot the histogram by:
Histogram[r, 0.2] But when I try to make a CDF of the data it is empty:
s = CDF[r, x]; Plot[s, {x, -10, 10}, Filling -> Axis] I would appreciate if you could help me know what is the problem and how I can solve it.



s = CDF[EmpiricalDistribution[r], x];? $\endgroup$EmpiricalDistributionimmediately deals with theTemporalDatain a sensible fashion. $\endgroup$EmpiricalDistribution[r["States][[1]]]$\endgroup$