Nothing
## internal helper functions for printing solver return code messages
## these functions are not exported
## print combined messages (message and numeric output)
printmessage <-function(message1, state, message2 = NULL, Nr = 1:length(message1)) {
if (is.null(message2)) {
cat("\n", paste(formatC(Nr, "##", width = 2), message1,
signif(state, digits = getOption("digits")), "\n"), "\n")
} else {
cat("\n", paste(formatC(Nr, "##", width = 2), message1,
signif(state, digits = getOption("digits")), message2, "\n"), "\n")
}
}
## print short messages
printM <- function(message) cat(message, "\n")
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.