Nothing
midpoint <- function(object, noise.cyc = 1:5)
{
Fluo <- object$DATA[, 2]
Fmax <- max(Fluo, na.rm = TRUE)
Fnoise <- sd(Fluo[noise.cyc], na.rm = TRUE)
mp <- Fnoise * sqrt(Fmax/Fnoise)
cyc.mp <- as.numeric(predict(object, newdata = data.frame(Fluo = mp), which = "x"))
return(list(f.mp = mp, cyc.mp = cyc.mp))
}
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.