Nothing
inClass = function(X,cls){
!is.null(oldClass(X)) && (cls %in% oldClass(X))
}
#' Checks if an object belongs to the class \code{\link{freqdom}}.
#
#' @title Checks if an object belongs to the class freqdom
#' @param X some object
#' @return \code{TRUE} if \code{X} is of type \code{\link{freqdom}}, \code{FALSE} otherwise
#' @seealso \code{\link{freqdom}}, \code{\link{timedom}}, \code{\link{is.timedom}}
#' @export
#' @keywords classes
is.freqdom = function (X){
inClass(X,'freqdom')
}
is.positiveint = function (n){
is.numeric(n) && n > 0
}
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.