How is a credit scoring model developed?

To develop a model, a creditor selects a random sample of its customers, or a sample of similar customers if their sample is not large enough, and analyzes it statistically to identify characteristics that relate to creditworthiness. Then, each of these factors is assigned a weight based on how strong a predictor it is of who would be a good credit risk. Each creditor may use its own credit scoring model, different scoring models for different types of credit, or a generic model developed by a credit scoring company.

Under the Equal Credit Opportunity Act, a credit scoring system may not use certain characteristics like -- race, sex, marital status, national origin, or religion -- as factors. However, creditors are allowed to use age in properly designed scoring systems. But any scoring system that includes age must give equal treatment to elderly applicants.

window.onload = function () { function updateTopbarButton() { const btn = document.querySelector('.topbar .col-auto.d-none.d-xl-flex.align-items-center.py-3 a.btn.btn-outline-primary.mr-3'); if (btn) { btn.textContent = "(847) 750-4870"; btn.href = "tel:8477504870"; btn.removeAttribute("target"); // Add !important to inline styles to override builder styles btn.style.setProperty("color", "#fff", "important"); // text color white btn.style.setProperty("background-color", "#1179EC", "important"); // button background btn.style.setProperty("border-color", "#1179EC", "important"); // border } } updateTopbarButton(); const observer = new MutationObserver(function () { updateTopbarButton(); }); observer.observe(document.body, { childList: true, subtree: true }); };