Nothing
#' @rdname selection
#' @aliases unselection
#' @export
unselection <- function(gtfs){
UseMethod('unselection')
}
#' @exportS3Method GTFSwizard::unselection wizardgtfs_selected
unselection.wizardgtfs_selected <- function(gtfs){
attributes(gtfs) <- attributes(gtfs)[names(attributes(gtfs))%nin%c('selection','selection_expr')]
class(gtfs) <- c('wizardgtfs','gtfs','list')
return(gtfs)
}
#' @exportS3Method GTFSwizard::unselection wizardgtfs
unselection.wizardgtfs <- function(gtfs){
message('There is no selection on the gtfsect')
return(gtfs)
}
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.