Nothing
draw.improvement <- function(scores, ...) {
result <- list()
maxes <- c()
for (ind in 1:length(scores)) {
maxes[ind] <- max(scores[1:ind])
}
plot(maxes, main=paste("Improvement of scores"), type="l", ...)
result[["maxes"]] <- maxes
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.