Practice

Insurance KPI Assignments

Assignments mirror common insurance analytics questions.

Metrics focus:

  • policy count per customer
  • written vs earned premium
  • claim severity by product line
  • policy retention (active rate) by product line

Assignment 1: Policies Per Customer #

Loading SQL editor...

Assignment 2: Written and Earned Premium by Product Line #

Loading SQL editor...

Assignment 3: Claim Severity by Product Line #

Claim severity is the average incurred cost per claim. Underwriters track it alongside loss ratio: a product line can have few claims (low frequency) but expensive ones (high severity).

Work at claim grain: each claim maps to exactly one policy, so a direct join to ins_policies cannot fan out.

Loading SQL editor...

Assignment 4: Policy Retention (Active Rate) by Product Line #

Retention proxy: of all policies ever written in each product line, what share is still in force? Cancelled policies count against the rate.

This is a simplified one-period view of retention. Production retention compares renewals across policy years.

Loading SQL editor...
Warning

In real insurance reporting, premium and claims are often evaluated by consistent time periods,
coverage types, and accounting rules. Treat this dataset as a simplified training model.

Next Step #

Finish the track with: