Description Usage Arguments Value Examples
Function to merge losses of the same amount adding up their corresponding occurrence rates, and to round the losses to the 10^digits integer value.
1  | compressELT(ELT, digits = 0)
 | 
ELT | 
 Data frame containing two numeric columns. The column   | 
digits | 
 Integer. It specifies the rounding of the losses to the 10^  | 
Data frame containg two numeric columns. The column Loss contains the expected losses from each single occurrence of event. The column Rate contains the arrival rates of a single occurrence of event.
1 2 3 4 5 6 7 8 9 10 11  | data(UShurricane)
# Compress the table to thousands of dollars
USh.k <- compressELT(ELT(UShurricane), digits = -3)
summary(USh.k)
# Compress the table to millions of dollars
USh.m <- compressELT(ELT(UShurricane), digits = -6)
summary(USh.m)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.