Sensitivity estimate example#

import numpy as np
import matplotlib.pyplot as pl
%pylab inline

import sys
sys.path.append('../scripts')
from linear_regression import linreg

from IPython.core.display import Image 
Image(filename='../img/sensitivity_error_example.png',width=400) 
%pylab is deprecated, use %matplotlib inline and import the required libraries.
Populating the interactive namespace from numpy and matplotlib
../_images/2539a693cea3ca7b3efae72fe0b808757ac88799ecadcf02ba89b2800798f88e.png
x = np.array([0.5, 1.0, 2.0, 5.0, 10.0, 20.0, 50.0, 100.0])
y = np.array([0.4, 1.0, 2.3, 6.9, 15.8, 36.4, 110.1, 253.2])
pl.plot(x,y,'--o')
pl.xlabel('$x$ [cm]')
pl.ylabel('$y$ [V]')
pl.title('Calibration curve')
Text(0.5, 1.0, 'Calibration curve')
../_images/cac6ec275533f058983132a1a9a883702d0294b6c87c9daeedc6bebf4f944fca.png

Sensitivity, \(K\) is:

\( K_i = \left( \frac{\partial y}{\partial x} \right)_{x_i} \)

K = np.diff(y)/np.diff(x)
print (K)
[1.2        1.3        1.53333333 1.78       2.06       2.45666667
 2.862     ]
pl.plot(x[1:],K,'--o')
pl.xlabel('$x$ [cm]')
pl.ylabel('$K$ [V/cm]')
pl.title('Sensitivity')
Text(0.5, 1.0, 'Sensitivity')
../_images/45ac238873415c0b94a2a9e7a15c039dfb6b40cb93371d2f456ecae74cf31cee.png

Instead of working with non-linear curve of sensitivity we can use the usual trick: the logarithmic scale

pl.loglog(x,y,'--o')
pl.xlabel('$x$ [cm]')
pl.ylabel('$y$ [V]')
pl.title('Logarithmic scale')
Text(0.5, 1.0, 'Logarithmic scale')
../_images/a434da79ff6b2d39777140d4afc2ae5cb4753478bdcad35623fb1b2c19625d67.png
logK = np.diff(np.log10(y))/np.diff(np.log10(x))
print( logK)
pl.plot(x[1:],logK,'--o')
pl.xlabel('$x$ [cm]')
pl.ylabel('$K$ [V/cm]')
pl.title('Logarithmic sensitivity')
pl.plot([x[1],x[-1]],[1.2,1.2],'r--')
[1.32192809 1.20163386 1.19897785 1.19525629 1.20401389 1.20793568
 1.20146294]
[<matplotlib.lines.Line2D at 0x7f9e49bd64d0>]
../_images/199ffdf69c821f1cf51f50d1e9485a4389a587a25e0097bc43292f55799691ca.png
pl.loglog(x,y,'o',x,x**(1.2))
pl.xlabel('$x$ [cm]')
pl.ylabel('$y$ [V]')
pl.title('Logarithmic scale')
pl.legend(('$y$','$x^{1.2}$'),loc='best')
<matplotlib.legend.Legend at 0x7f9e49c2f6a0>
../_images/e4d4aec0ab278afa13f023df069cf04475d33e82eb25a2b76e1ad273051d08a7.png
pl.plot(x,y-x**(1.2),'o')
pl.xlabel('$x$ [cm]')
pl.ylabel('$y - y_c$ [V]')
pl.title('Deviation plot')
# pl.legend(('$y$','$x^{1.2}$'),loc='best')
Text(0.5, 1.0, 'Deviation plot')
../_images/cd2fd6c51419be8e50efccc1469666fefb4504f810d6294bd1a5218b53c39b9d.png

Regression analysis#

Following the recipe of http://www.answermysearches.com/how-to-do-a-simple-linear-regression-in-python/124/

print (linreg(np.log10(x),np.log10(y)))
Estimate: y = ax + b
N = 8
Degrees of freedom $\nu$ = 6 
a = 1.21 $\pm$ 0.005
b = -0.01 $\pm$ 0.005
R^2 = 1.000
Syx = 0.011
y = 1.21 x + -0.01 $\pm$ 0.010 V
(1.2103157469888082, -0.012527809481276199, 0.9998888247342179, 0.011222369359282008)
pl.loglog(x,y,'o',x,x**(1.21)-0.01252)
pl.xlabel('$x$ [cm]')
pl.ylabel('$y$ [V]')
pl.title('Logarithmic scale')
pl.legend(('$y$','$x^{1.2}$'),loc='best')
<matplotlib.legend.Legend at 0x7f9e49e03c70>
../_images/3e81e21cdfa5eeb918798c8aae0ab2779adece2d19d585ccd067c6911c054d31.png
pl.plot(x,y-(x**(1.21)-0.01252),'o')
pl.xlabel('$x$ [cm]')
pl.ylabel('$y - y_c$ [V]')
pl.title('Deviation plot');
# pl.legend(('$y$','$x^{1.2}$'),loc='best')
../_images/9249aa7b88d24d9691ab0c75bb4afd1d099b91bada51ac90125b4bff362b2cd4.png