RandomFields (version 3.0.5)

RFdistr: Evaluating distribution families

Description

Through RRdistr distribution families can the passed to RandomFields to create random parameters

Usage

RFddistr(model, x, dim=1, ...)
RFpdistr(model, q, dim=1, ...)
RFqdistr(model, p, dim=1, ...)
RFrdistr(model, n, dim=1, ...)
RFdistr(model, x, q, p, n, dim=1, ...)

Arguments

model
an RRmodel
x
the location where the density is evaluated
q
the location there the probability function is evaluated
p
the value where the quantile function is evaluated
n
the number of random values to be drawn
dim
the dimension of the vector to be drawn
...
for advanced use: further options and control parameters for the simulation that are passed to and processed by RFoptions

Value

  • as described in the arguments

Details

RFdistr is the generic function for the 4 functions belonging to a distribution.

See Also

RRgauss, RR

Examples

Run this code
set.seed(0)

Print(RFoptions())
## a very toy example to understand the use
model <- RRdistr(norm())
v <- 0.5
Print(RFdistr(model=model, x=v), dnorm(x=v)) 
Print(RFdistr(model=model, q=v), pnorm(q=v))
Print(RFdistr(model=model, p=v), qnorm(p=v))
n <- 10
set.seed(10); r <- RFdistr(model=model, n=n)
set.seed(10); Print(r, rnorm(n=n))


## note that a conditional covarianc function given the
## random parameters is given
model <- RMgauss(scale=exp())
for (i in 1:3) {
  readline(paste("Simulation no.", i, ": press return", sep=""))
  plot(model)
  plot(RFsimulate(model, x=seq(0,10,0.1)))
}

Run the code above in your browser using DataLab