Nothing
validate_timeDF = function(timeDF, noerror = FALSE){
if(! .is.timeDF(timeDF)){
if(noerror){
return(FALSE)
}else{
stop("not a valid timeDF object")
}
}
return(TRUE)
}
## Internal
.is.timeDF = function(timeDF){
if(! is(timeDF, "timeDF")){
return(FALSE)
}
if( is.null(time_var(timeDF))){
return(FALSE)
}
return(TRUE)
}
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.