cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

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

How to convert quadratic logarithmic equation

Running an ELISA test I got the best fit for the standard curve using fit special and log/log transformation as a quadratic function: Ln(OD) = -4.139548 + 1.301394*Ln(Concentration of α-CD3 [ng/ml]) - 0.0934906*Ln(Concentration of α-CD3 [ng/ml])^2. Is the square operator applicable for concentration only or for its logarithmic derivative. How to convert this equation to be able to calculate concentration from the measured OD? I prefer an interactive explanation. Thanks.

Bivariate(
Y( :OD ),
X( :Name( "Concentration of α-CD3 [ng/ml]" ) ),
Fit Special(
xTran( "Log" ),
yTran( "Log" ),
Degree( 2 ),
{Line Color( {142, 176, 40} )}
),
SendToReport(
Dispatch(
{},
"1",
ScaleBox,
{Scale( "Log" ), Min( 5 ), Max( 400 ), Inc( 1 ), Minor Ticks( 1 )}
),
Dispatch(
{},
"2",
ScaleBox,
{Scale( "Log" ), Min( 0.1 ), Max( 2 ), Inc( 1 ), Minor Ticks( 1 )}
)
)
)

 

10 REPLIES 10
Peter
Level II

Re: How to convert quadratic logarithmic equation

Thank you, Karen, I will try that

Recommended Articles