soa | R Documentation |
The SOA Group Medical Insurance Large Claims Database records, among others, all the claim amounts exceeding 25,000 USD in the year 1991.
data("soa")
A data frame with 75789 observations on the following variable:
size
Claim size (in USD).
Grazier, K. L. and G'Sell Associates (1997). Group Medical Insurance Large Claims Database Collection and Analysis. SOA Monograph M-HB97-1, Society of Actuaries, Schaumburg.
Society of Actuaries, https://www.soa.org/resources/experience-studies/2000-2004/91-92-group-medical-claims/.
Beirlant J., Goegebeur Y., Segers, J. and Teugels, J. (2004). Statistics of Extremes: Theory and Applications, Wiley Series in Probability, Wiley, Chichester.
data(soa)
# Histogram of log-claim amount
hist(log(soa$size),breaks=seq(10,16,0.2),xlab="log(Claim size)")
# Exponential QQ-plot of claim amount
ExpQQ(soa$size)
# Mean excess plot of claim amount (function of k)
MeanExcess(soa$size, k=TRUE)
# Mean excess plot of claim amount (function of order statistics)
MeanExcess(soa$size, k=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.