Nothing
rtt.input.env <- new.env()
# Input checks ----
rtt.input.env$properties.cpt <- function(cumulative.payments.triangle){
if(sum(cumulative.payments.triangle<0, na.rm = T) !=0 ){
stop('Please provide an input triangle without negative values')
}
temp = ChainLadder::cum2incr(cumulative.payments.triangle)
if(sum(temp<0, na.rm = T) !=0 ){
stop('Please provide an input triangle of cumulative payments.\n Payments recoveries are not allowed in our model framework.')
}
}
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.