Description Usage Arguments Value Author(s) References Examples
Calculate the function of excreted urea to assess the etiology of kidney injury in a patient who is been administered diuretics.
1 2 3 4 5 6 | FEurea(
serum.creatinine = 1,
urine.urea = 1,
serum.urea = 1,
urine.creatine = 1
)
|
serum.creatinine |
Numerical value. Serum creatinine reported in BMP or CMP. |
urine.urea |
Numerical value. Urine urea reported in a lab (urea urine spots). |
serum.urea |
Numerical value. Serum BUN reported in BMP or CMP. |
urine.creatine |
Numerical value. Urine creatinine reported in a lab (creatinine urine spots). |
Returns a percentage corresponding to the fraction of excreted sodium.
Carlos C Vera Recio
Kaplan, A A, and O F Kohn. “Fractional excretion of urea as a guide to renal dysfunction.” American journal of nephrology vol. 12,1-2 (1992): 49-54. doi:10.1159/000168417
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | FEurea(
serum.creatinine = 1,
urine.urea = 1,
serum.urea = 1,
urine.creatine = 1
)
## The function is currently defined as
function (serum.creatinine = 1, urine.urea = 1, serum.urea = 1,
urine.creatine = 1)
{
guide = list(
`Pre-renal` = 35,
`Intrinsic renal` = 50
)
feurea = 100 * ((serum.creatinine * urine.urea)/(serum.urea *
urine.creatine))
interpretation = if (feurea > 50) {
"Intrinsic Renal"
}
else if (feurea <= 35) {
"Prerenal"
}
else {
"not conclusive"
}
res = list(
`fraction of excreted urea` = feurea,
interpretation = interpretation
)
return(res)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.