Displaying 1 result from an estimated 1 matches for "interpolated_ecdf".
2006 Jan 18
0
R: ecdf - linear
...r function {resulting from
approxfun() as in your example below}. However that result may
*NOT* inherit from "ecdf" (nor "stepfun").
And for that reason {returning a different class}, this
extension should NOT become part of ecdf() itself.
If you write such a "ecdf -> interpolated_ecdf" transforming
function, it might be useful to include in the ecdf() help page
later, so "keep us posted".
Regards,
Martin Maechler, ETH Zurich
Norman> my changed function:
N>> ecdf_linear<-function (x)
N>> {
N>> x <- sort(x)...