Insurance Risk ManagementRisk management is very important for insurance industry. Insurance means that insurance companies take over risks from customers. Insurers consider every available quantifiable factors to develop profiles of high and low insurance risk. Level of risk determines insurance premiums. Generally, insurance policies involving factors with greater risk of claims are charged at a higher rate. With much information at hand, insurers can evaluate risk of insurance policies at much higher accuracy. To this end, insurers collect a vast amount of information about policy holders and insured objects. Statistical methods and tools based on data mining techniques can be used to analyze or to determine insurance policy risk levels. Insurance Risk AnalysisIn this page, insurance risk analysis methods are described;
Are consultants a waste of money? - ZDNet
Profiling of Risky SegmentsProfiling insurance risk factors is very important. The Pareto principle suggests that 80%~90% of the insurance claims may come from 10%~20% of the insurance segment groups. Profiling these segments can reveal invaluable information for insurance risk management. Insurance providers often collect a large amount of information on insured entities. Policy information (such as automobile insurance, life insurance, general insurance, etc.) often consists of dozens or even hundreds of variables, involving both categorical and numerical data with noisy information. Profiling is to identify factors and variables that best summarize the segments.
Fortunately, this problem can be overcome with StarProbe Hotspot Profiling Analysis Tools. Hotspot profiling analysis drills-down data systematically and detects important relationships, co-factors, interactions, dependencies and associations amongst many variables and values accurately using Artificial Intelligence techniques such as incremental learning and searching, and generate profiles of most interesting segments. It is noted that insurance premiums are normally stipulated with profiles of risky (or very low-risk) policy holders. Hotspot analysis can identify profiles of high (and low) risk policies accurately through thorough analysis of all available insurance data. The followings are examples of risk factor profiles. It is noted that the same can be applied to other quantifiable risk insurances such as credit insurance, general insurance, and so on. High risk healthcare coverage risk factor profilingAn insurance company keeps health care insurance coverage (or health insurance for short) or life insurance records in its database: gender, age, education, smoking, drinking, sun activity, height, weight (=obesity level), claim payment, etc., as well as other contact information. The company wishes to know which health insurance groups are at the highest risk, i.e., have the highest claim ratio. The following is a possible output of hotspot profiling analysis; ![]() High risk auto insurance risk factor profilingAn insurance company keeps records on motor vehicle insurance (or automobile insurance) information in its database containing driver and vehicle information: Gender, age, license experience, education, occupation, drinking, smoking, mobile phone use; vehicle manufacturer, type, model, year make, and so on. The company wishes to know which motor vehicle insurance is at the highest risk groups, i.e., highest average insurance payouts. The following is a possible output of hotspot profiling analysis; ![]() The following figure shows an example of StarProbe Data Miner hotspot analysis output. Top-left is hotspot drill-down tree. Top-right shows detailed statistics of hotspots selected. Bottom left and right provide gains/lift factor analysis.
Insurance Risk ModelingIf past is any guide for predicting future events, predictive modeling is an excellent technique for insurance risk management. Predictive models are developed from past historical records of insurance polices, containing financial, demographic, psychographic, geographic information, along with properties of insured objects. From the past insurance policy information, predictive models can learn patterns of different insurance claim ratios, and can be used to predict risk levels of future insurance policies. It is important to note that statistical process requires a substantially large number of past historical records (or insurance policies) containing useful information. Useful information is something that can be a factor that differentially affects insurance claims ratios. Insurance Predictive Modeling and ToolsStarProbe data miner supports robust easy-to-use predictive modeling tools. Users can develop models with the help of intuitive model visualization tools. Application and deployment of insurance risk models is also very simple. StarProbe supports the following predictive modeling tools;
Insurance ScoringInsurance scoring is numerical rating of insurance policies. It measures the level of risk of being claimed. This section describes advanced insurance risk modeling and insurance scoring methods; Method 1: Cramer decision tree predicting claims probabilityDecision tree divides insurance customer segments into smaller sub segments recursively. At each segment, splitting is made in a way that boosts proportions of either claimed polices or no claim polices, in each resulting sub segment. This process repeats until no further improvement can be made.
The above figure shows StarProbe data miner decision tree. Insurance segments are partitioned recursively in a way that increases the proportion of either claimed polices or no claim policies. In the figure, reds represent claimed policy portions and greens for no claim policies. Nodes in red indicate that over 50% customers of the segments have claimed policies. Green nodes have less than 50% of claimed policies. For new insurance applications, when customer's information is applied to the tree, it will normally lead to a terminal node segment. The claims ratio of the node is used as the insurance score of the customer or policy. If the segment has 35% claims ratio in the past, the score will be 35% (0r 0.35). For more information, please read Decision Tree Software. Method 2: Neural network predicting relative claims risk levelTree-based insurance scoring provides coarse level prediction. It lacks the accuracy that neural network models can produce. Neural Network is a very powerful predictive modeling technique. Neural network is derived from animal nerve systems (e.g., human brains). The heart of the technique is (artificial) neural network. Neural networks can learn to predict in detail with high accuracy. The following shows the neural network module of StarProbe data miner;
Neural network works differently from decision tree. It can be trained to predict either relative claim levels or expected claim amounts. When the former is used, network will predict relative level of insurance claims. The latter will predict expected claim amounts. The followings are histograms, showing distribution of insurance scores predicted by a neural network insurance scoring model. Note that reds are claimed polices. Greens represent no claim policies. Clearly, the neural network model predicts claimed policies with higher scores and no claim policies with lower scores. Analyzing distribution of scores, claims probability may be deduced.
Method 3: Incorporating advanced insurance scoring techniquesThe decision tree method provides coarse-level general insurance scoring where customers of the same segments are treated equally with the same ratings. The neural network method offers finer insurance scoring. Combining two methods can yield much more robust insurance scoring systems. Rule-based Modeling provides an environment where rules and mathematical formulas can be expressed with predictive models (such as neural networks and decision trees). Two insurance scoring methods can be combined using rule-based modeling. Rule-based modeling is a powerful tool for modeling complex problems such as insurance scoring. For example, the following rule-based modeling expressions combine three insurance scoring models: one decision tree "insure-tree", the other two neural networks "insure-net1" and "insure-net2". First, if applicants have previous heart attacks, they are at much higher risk. So they are handled specially by the first rule. If the tree's prediction belongs to a segment specially marked as 'pareto-group', score will be computed as the maximum of the probability predicted by the tree and the average value predicted by the two neural networks. Otherwise the decision tree probability will be returned by the third statement;
// For customers having previous heart attacks;
// return the maximum of decision tree and regression predictions;
IF (Heart_attacks > 0) {
RETURN MAX(MODEL("insure-tree", 'claimed'), 0.7) // at least 70%!
END ;
// Although no previous heart attacks, belongs to the 80~90% Pareto group;
IF (MODEL("insure-tree", LABEL)='pareto-group') {
RETURN MAX(MODEL("insure-tree", 'claimed'),
AVG(MODEL("insure-net1"), MODEL("insure-net2")))
// For the rest;
END ;
RETURN MODEL("insure-tree", 'claimed') ;
Insurance Fraud DetectionGenerally speaking, data mining fraud detection techniques do not work well. One problem is that fraudulent claims are only partially discovered. It is difficult to develop predictive models. Note that predictive modeling requires a substantially large number of training data! When data is available in bulk, predictive modeling may be used to identify similar claims which have not been discovered. In addition, the way healthcare insurance operates provides indirect approaches for fraud detection. For more, please read Healthcare Insurance Fraud Detection. New way of deploying credit risk models for insurance actuariesConventionally, risk models are made available to insurance actuaries using purposely-written programs, normally desktop programs with graphical user interfaces (GUI). However, developing fully-featured GUI programs is very costly and time consuming. In addition, it is very difficult to manage distribution. Risk models should be revised to reflex changing business environment periodically. Model upgrade is another problematic area. StarProbe Rule-based Modeling Environment and Web Service Kit provides a robust environment for deploying sophisticated insurance risk management systems over the web in a simple manner without any programming effort. Credit managers can access credit scoring models using web browsers, as shown in the following figure. Deploying models over StarProbe RME Webkit is very simple and easy. More importantly, in a secure manner, centrally controlled. Model upgrade can happen instantaneously to all users.
|
![]()
|



