Nothing
# CLASSES VALIDATION
#' @include AllClasses.R
NULL
# TimeScale =====================================================================
setValidity(
Class = "TimeScale",
method = function(object) {
## Get data
label <- object@label
name <- object@name
epoch <- object@epoch
fixed <- object@fixed
direction <- object@direction
year <- object@year
## Validate
cnd <- list(
arkhe::validate(arkhe::assert_scalar(label, "character")),
arkhe::validate(arkhe::assert_scalar(name, "character")),
arkhe::validate(arkhe::assert_scalar(epoch, "numeric")),
arkhe::validate(arkhe::assert_scalar(fixed, "numeric")),
arkhe::validate(arkhe::assert_scalar(direction, "integer")),
arkhe::validate(arkhe::assert_scalar(year, "numeric"))
)
## Return conditions, if any
arkhe::check_class(object, cnd)
}
)
# Time Series ==================================================================
# setValidity(
# Class = "RataDie",
# method = function(object) {
#
# }
# )
setValidity(
Class = "TimeSeries",
method = function(object) {
## Get data
time <- object@.Time
m <- nrow(object)
## Validate
cnd <- list(
arkhe::validate(arkhe::assert_type(object, "numeric")),
arkhe::validate(arkhe::assert_length(time, m)),
arkhe::validate(arkhe::assert_infinite(time))
)
## Return conditions, if any
arkhe::check_class(object, cnd)
}
)
setValidity(
Class = "TimeIntervals",
method = function(object) {
## Get data
names <- object@.Id
start <- object@.Start
end <- object@.End
m <- length(start)
## Validate
cnd <- list(
arkhe::validate(arkhe::assert_length(names, m)),
arkhe::validate(arkhe::assert_length(end, m)),
arkhe::validate(arkhe::assert_missing(names)),
arkhe::validate(arkhe::assert_missing(start)),
arkhe::validate(arkhe::assert_missing(end)),
arkhe::validate(assert_ordered(start, end))
)
## Return conditions, if any
arkhe::check_class(object, cnd)
}
)
assert_ordered <- function(start, end) {
arg_start <- deparse(substitute(start))
arg_end <- deparse(substitute(end))
if (any(start > end)) {
msg <- sprintf("%s is younger than %s.", sQuote(arg_start), sQuote(arg_end))
stop(msg)
}
invisible(NULL)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.