๐งช Kidney Failure Risk Equation (KFRE)
Calculates 2-year and 5-year risk of progression to end-stage renal disease (ESRD) requiring dialysis or transplant, using the validated 4-variable Tangri equation.
Enter your clinical parameters to see dynamic diagnostic readings.
๐ Copy
๐ Share
๐จ๏ธ PDF Report
`;
} else {
card.innerHTML = `
${res.score}
${res.title}
${res.desc}
๐ Result Interpretation
${res.desc}
๐ Normal Ranges
2-Year Risk: < 5% (Low Risk) | 5โ15% (Moderate Risk) | > 15% (High Risk)
๐ก What This Means
The Tangri 4-variable Kidney Failure Risk Equation predicts progression of CKD stages 3-5 using age, gender, eGFR, and Urine Albumin-Creatinine Ratio (ACR).
โ ๏ธ When to See a Doctor
Consult a nephrologist if 2-year risk > 5% or if eGFR is progressively dropping.
๐ Related Conditions
๐ฟ Related Remedies
๐งฎ Related Calculators
๐ฅ Medical Guidance & Consultation
Need personalized guidance? You can book a professional Homeopathic Consultation for a complete therapeutic assessment.
๐ Copy
๐ Share
๐จ๏ธ PDF Report
`;
}
}
function copyResult_hc_6a965246dcd79(score, title) {
const text = "Kidney Failure Risk Equation (KFRE) Result:\nScore: " + score + "\nClassification: " + title + "\nReport generated via Toolfix.info";
navigator.clipboard.writeText(text).then(() => {
alert('Result copied to clipboard!');
});
}
function shareResult_hc_6a965246dcd79(score) {
const shareUrl = window.location.origin + window.location.pathname + '?score=' + encodeURIComponent(score);
navigator.clipboard.writeText(shareUrl).then(() => {
alert('Share link copied to clipboard!');
});
}
// Auto-calculate on input
(function() {
const initAutoCalc = () => {
const wrapper = document.getElementById('hc_6a965246dcd79-wrapper');
if (wrapper) {
wrapper.querySelectorAll('input, select').forEach(el => {
const eventName = el.tagName === 'SELECT' ? 'change' : 'input';
el.addEventListener(eventName, () => {
calc_hc_6a965246dcd79(true);
});
});
}
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initAutoCalc);
} else {
initAutoCalc();
}
})();