Nothing
getMembership <-
function(obs,windowlength,HMMtable){
start <- as.integer(HMMtable$Startpos[1])
end <- as.integer(HMMtable$Endpos[nrow(HMMtable)])
window <- seq(start,end,windowlength)
membership <- numeric(length=length(obs))
for (row in 1:nrow(HMMtable)){
condition <- isbetween(window,HMMtable$Startpos[row],HMMtable$Endpos[row])
membership[condition] <- as.integer(HMMtable$State[row])
}
return(membership)
}
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.