cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

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