The color of the line representing the real value on the plot.
lwdValue
The width of the line representing the real value on the plot.
ltyValue
The line type of the line representing the real value on the plot.
colQuantiles
The color of the lines representing the quantiles on the plot.
lwdQuantiles
The width of the lines representing the quantiles on the plot.
ltyQuantiles
The line type of the lines representing the quantiles on the plot.
…
Additional arguments to be passed to the generic methods.
Value
SimTest objects are lists containing:
RealValue
The value to test.
SimulatedValues
A vector of simulated values, whose quantiles will be used for the test.
is.SimTest returns TRUE if the object is of class SimTest.
summary.SimTest returns a summary of the object, including the empirical quantile of the real value in the simulated distributon.
Details
Simulated values should be obtained by simulation. The actual value is compared to simulated quantiles. SimTest objects can be plotted and summarized.
# NOT RUN {# Set the value to testReal <- 0.8
# Is it a realization of a Gaussian distribution?Sims <- rnorm(1000)
# Make a Simtest objectst <- as.SimTest(Real, Sims)
plot(st)
summary(st)
# }