Nothing
modifyFormulaF <- function(model){
originalFormula <- formula(model)
modifiedFormula <- as.formula(paste0(gsub("offset\\(", "offset2(", deparse(originalFormula)), collapse=" "))
formulaNoOffsets <- as.formula(paste0(gsub(" [\\+-] offset2\\(.*\\)", "", deparse(modifiedFormula)), collapse=" "))
return(formulaNoOffsets)
}
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.