Nothing
correctPeaks <- function(peakList, modList) {
mapply(function(samp, mod) {
lapply(samp,
function(profile) {
if (nrow(profile) > 0) {
cbind(profile,
rt.cor = c(predict(mod, profile[,1], what = "time")))
} else {
cbind(profile, rt.cor = rep(0, 0))
}
})},
peakList, modList, SIMPLIFY = FALSE)
}
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.