-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Calculate Creatinine Clearance #1826
Comments
Based on the data set above, I have added the calculation of the GFR value: CKD-EPI Creatinine Equation (2021)where: Source = https://www.kidney.org/content/ckd-epi-creatinine-equation-2021 Relevant Input
Relevant Output
Reproducible Example/Pseudo Code
|
This is awesome @airdjan ! Thank you for putting together. Let's discuss at tomorrow's PK Working group meeting. |
…s in header. Update titles and comments of Tests
…mentation guide, including CRCLBL and EGFRBL which depend on #1826 Calculate Creatinine Clearance
Feature Idea
This function would calculate Creatinine Clearance (CRCL). This is used renal function assessment. It could be used to create a parameter for ADLB or a baseline value. The baseline values are typically used in PK programming for NCA or POPPK. It might be similar to the functions in
derive_advs_params.R
such asderive_param_bmi()
andcompute_bmi()
This is the formula I have typically seen used:
For CREATBL in umol/L:
For SEX = 'F': then CRCL = ((140 - AAGE) * WTBL * 1.04) / CREATBL
For SEX = 'M': then CRCL = ((140 - AAGE) * WTBL * 1.23) / CREATBL
There could be the option to use different formulas if desired.
It might also be worth calculating EGFR
Relevant Input
Relevant Output
Reproducible Example/Pseudo Code
The text was updated successfully, but these errors were encountered: