how do i extrapolate values from a graph?

L

lucybelle

i've got a series of values (calibration standards) and have made a line of
best fit with them os area ratio against drug concentration, now i need to
use this line to establish the concentration of unknowns from their area ratio

thanks!
 
J

Jon Peltier

Extrapolation is dangerous. Interpolation is okay. You can use an algorithm
that interpolates between the two nearest points of the calibration, or an
algorithm that determines the concentration based on a best fit (regression)
of the entire calibration curve. Using the regression is somewhat easier.
The unknown Y value is given by:

=TREND(Y-range,X-range,X-value)

Where Y-range and X-range are the ranges with the fitted Y and X values, and
X-value is the value of X at which you want to calculate Y.

- Jon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top