#' xxx
#'
#' \code{mark.tripnos.f} yyy
#'
#' @export
mark.tripnos.f = function(input.frm,tripno.list) {
tripflg <- rep(F,length(input.frm$tripno))
ntrip <- length(tripno.list)
for(i in 1:ntrip){
tripflg[input.frm$tripno==tripno.list[i] & !is.na(input.frm$tripno)]<-T
}
return(tripflg)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.