# Example 1: Low Risk
# Base Deficit 2, INR 1.1, GCS 15
# Score = 2 + (2.5 * 1.1) + (15 - 15) = 2 + 2.75 + 0 = 4.75
pediatric_big_score(2, 1.1, 15)
# Example 2: High Risk
# Base Deficit 10, INR 1.8, GCS 8
# Score = 10 + (2.5 * 1.8) + (15 - 8) = 10 + 4.5 + 7 = 21.5
pediatric_big_score(10, 1.8, 8)
Run the code above in your browser using DataLab