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
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