Nothing
poisson.param <-
function(thr, upper.copy)
{
lamda=c(seq(0.01, 0.09, 0.01), seq(0.1,9.9,0.1), seq(10,upper.copy,1))
th=seq(1,10,1)
if (thr){
th=1
}
result=NULL
for (la in lamda){
for (tt in th){
result=rbind(result, c(la, tt))
}
}
colnames(result)=c("Copy", "Thres")
return (result)
}
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.