Tests if the given data lies in the support of the Distribution, either tests if all data lies in the support or any of it.
liesInSupport(object, x, all = TRUE, bound = FALSE)
Distribution.
vector of numerics to test.
logical, see details.
logical, if FALSE (default) uses dmin/dmax otherwise inf/sup.
Either a vector of logicals if all
is FALSE otherwise returns TRUE if every element
lies in the distribution support or FALSE otherwise.
$liesInSupport(x, all = TRUE, bound = FALSE)
If all
is TRUE (default) returns TRUE only if every element in x
lies in the support. If all
is FALSE then returns a vector of logicals for each corresponding element
in the vector x
.