
Given the vectors stepfun(x, y, …)
returns an interpolating
‘step’ function, say fn
. I.e., right = FALSE
, right = TRUE
,
The value of the constant f
.
For the default, right = FALSE, f = 0
,
fn
is a cadlag function, i.e., continuous from the right,
limits from the left, so that the function is piecewise constant on
intervals that include their left endpoint.
In general, f
, fn
may no longer be a proper
step function, since it can be discontinuous from both sides, unless
right = TRUE, f = 1
which is left-continuous (i.e., constant
pieces contain their right endpoint).
stepfun(x, y, f = as.numeric(right), ties = "ordered",
right = FALSE)is.stepfun(x)
knots(Fn, …)
as.stepfun(x, …)
# S3 method for stepfun
print(x, digits = getOption("digits") - 2, …)
# S3 method for stepfun
summary(object, …)
numeric vector giving the knots or jump locations of the step
function for stepfun()
. For the other functions, x
is
as object
below.
numeric vector one longer than x
, giving the heights of
the function values between the x values.
a number between 0 and 1, indicating how interpolation outside
the given x values should happen. See approxfun
.
Handling of tied x
values. Either a function or
the string "ordered"
. See approxfun
.
logical, indicating if the intervals should be closed on the right (and open on the left) or vice versa.
an R object inheriting from "stepfun"
.
number of significant digits to use, see print
.
potentially further arguments (required by the generic).
A function of class "stepfun"
, say fn
.
There are methods available for summarizing ("summary(.)"
),
representing ("print(.)"
) and plotting ("plot(.)"
, see
plot.stepfun
) "stepfun"
objects.
The environment
of fn
contains all the
information needed;
the original arguments
number of knots (x values)
continuity parameter
the function values outside the knots
(always == "constant"
, from
approxfun(.)
).
ecdf
for empirical distribution functions as
special step functions and plot.stepfun
for plotting
step functions.
# NOT RUN {
y0 <- c(1., 2., 4., 3.)
sfun0 <- stepfun(1:3, y0, f = 0)
sfun.2 <- stepfun(1:3, y0, f = 0.2)
sfun1 <- stepfun(1:3, y0, f = 1)
sfun1c <- stepfun(1:3, y0, right = TRUE) # hence f=1
sfun0
summary(sfun0)
summary(sfun.2)
## look at the internal structure:
unclass(sfun0)
ls(envir = environment(sfun0))
x0 <- seq(0.5, 3.5, by = 0.25)
rbind(x = x0, f.f0 = sfun0(x0), f.f02 = sfun.2(x0),
f.f1 = sfun1(x0), f.f1c = sfun1c(x0))
## Identities :
stopifnot(identical(y0[-1], sfun0 (1:3)), # right = FALSE
identical(y0[-4], sfun1c(1:3))) # right = TRUE
# }
Run the code above in your browser using DataLab