cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
sanchezpeinado
Level III

Help needed with the eGFR MDRD Formula

Hi all, I need help creating the following formula: eGFR = 175 x (SCr)-1.154 x (age)-0.203 x 0.742 [if female] x 1.212 [if Black] 

thanks

OS

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Help needed with the eGFR MDRD Formula

Hopefully this example will give you a clue:

 

// = 175 x (SCr)-1.154 x (age)-0.203 x 0.742 [if female] x 1.212 [if Black]

= 175*:SCr - 1.154*:age - 0.203*If( :sex == "female", 0.742, 1 )*If( :race == "Black", 1.212, 1 )

 

View solution in original post

3 REPLIES 3

Re: Help needed with the eGFR MDRD Formula

Hopefully this example will give you a clue:

 

// = 175 x (SCr)-1.154 x (age)-0.203 x 0.742 [if female] x 1.212 [if Black]

= 175*:SCr - 1.154*:age - 0.203*If( :sex == "female", 0.742, 1 )*If( :race == "Black", 1.212, 1 )

 

sanchezpeinado
Level III

Re: Help needed with the eGFR MDRD Formula

Thank you Mark,
Still not working, what am I doing wrong
175 * (:BL_lab_cr - 1.154) * (:age_BL - 0.203) * If( :gender_decode,"female" * 0.742,1) * If( :race_decode,"black" * 1.212,1)
sanchezpeinado
Level III

Re: Help needed with the eGFR MDRD Formula

fixed!
thank you!!!

Recommended Articles