forked from GrupoFWP/DAQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fwp_analysis.py
1019 lines (848 loc) · 32.6 KB
/
fwp_analysis.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
"""
This module contains tools for data analysis.
Some of its most useful tools are:
mean : function
Returns average or weighted average and standard deviation.
rms : function
Returns RMS value.
smooth : function
Smooths data using a window with requested size.
main_frequency(data, samplerate=44100):
Returns main frequency and its Fourier amplitude.
peak_separation : function
Calculates mean peak separation.
PIDController : class
PID contoller that keeps a log.
linear_fit : function
Applies linear fit and returns m, b and Rsq. Can also plot it.
nonlinear_fit : function
Applies nonlinear fit and returns parameters and Rsq. Plots it.
error_value : function
Rounds up value and error of a measure.
@author: Vall
"""
from collections import namedtuple
import matplotlib.pyplot as plt
from math import sqrt
import numpy as np
from scipy.optimize import curve_fit
from scipy.signal import find_peaks
#%%
def mean(X, dX=None):
"""Returns average or weighted average and standard deviation.
If dX is given, it returns weighted average (weight=1/dX**2) of
data. If not, it returns common average.
Parameters
----------
X : list, np.array
Data.
dX=None : list, np.array
Data's error.
Returns
-------
(mean, std): tuple
This tuple contains data's mean and standard deviation. If dX is
given, it returns weighted values (weight=1/dX**2).
Raises
------
"The X data is not np.array-like" : TypeError
If X can't be easily converted to numpy array.
"The dX data is not np.array-like" : TypeError
If dX can't be easily converted to numpy array.
"The dX array's length should match X's" : IndexError
If dX's length doesn't match X's.
"""
if not isinstance(X, np.ndarray):
try:
X = np.array(X)
except:
raise TypeError("The X data is not np.array like")
if dX is not None:
if not isinstance(dX, np.ndarray):
try:
dX = np.array(dX)
except:
raise TypeError("The dX data is not np.array like")
if len(dX) != len(X):
raise IndexError("The dX array's length should match X's")
mean = np.average(X, weights=1/dX**2)
variance = np.average((X-mean)**2, weights=1/dX**2)
return (mean, sqrt(variance))
else:
return (np.mean(X), np.std(X))
#%%
def rms(data):
"""Takes a list or array and returns RMS value.
Parameters
---------
data : array or list
Data to be analized.
Returns
-------
float
RMS value of analized data.
"""
import numpy as np
return np.sqrt(np.mean((np.array(data))**2))
#%%
def main_frequency(data, samplerate=44100):
"""Returns main frequency and its Fourier amplitude.
Parameters
----------
data : np.array
Data inside a 1D array.
samplerate : int, float
The data's sampling rate.
Returns
-------
samplerate : int, float
The data's sampling rate.
main_frequency : float
The data's main frequency.
fourier_peak : float
The main frequency's fourier amplitude.
"""
fourier = np.abs(np.fft.rfft(data))
fourier_frequencies = np.fft.rfftfreq(len(data), d=1./samplerate)
max_frequency = fourier_frequencies[np.argmax(fourier)]
fourier_peak = max(fourier)
return max_frequency, fourier_peak
#%%
def smooth(X, window_len=11, window='hanning'):
"""Smooths data using a window with requested size.
This method is based on the convolution of a scaled window with the
signal. The signal is prepared by introducing reflected copies of
the signal (with the window size) in both ends so that transient
parts are minimized in the begining and end part of the output
signal.
Parameters
----------
X : np.array
Input signal
window_len : int {1, 3, 5, ...}
Dimension of the smoothing window; should be an odd integer
window : str {'flat', 'hanning', 'hamming', 'bartlett', 'blackman'}
Type of window; i.e. flat window will produce a moving average
smoothing. Could be the window itself if an array instead of a
string.
Returns
-------
np.array
Smoothed signal
Examples
--------
>>> t = np.linspace(-2,2,0.1)
>>> x = np.sin(t) + np.randn(len(t))*0.1
>>> y = smooth(x)
See Also
--------
numpy.hanning
numpy.hamming
numpy.bartlett
numpy.blackman
numpy.convolve
scipy.signal.lfilter
Warnings
--------
Beware! This was taken from: SciPy-CookBook/ipython/SignalSmooth.py
length(output) != length(input). To correct this: return
y[(window_len/2-1):-(window_len/2)] instead of just y.
EDIT: Currently doing this. Return Y to get previous behaviour.
"""
if X.ndim != 1:
raise ValueError("X should be a 1 dimension array.")
if X.size < window_len:
raise ValueError("X needs to be bigger than window_len.")
if window_len % 2 !=1:
raise ValueError('Window_len should be an odd value.')
if window_len < 3:
return X
allowed = ['flat', 'hanning', 'hamming', 'bartlett', 'blackman']
if not window in allowed:
raise ValueError("Window should be on {}".format(allowed))
S = np.r_[X[window_len-1 : 0 : -1], X, X[-2 : -window_len-1 : -1]]
if window == 'flat': # moving average
W = np.ones(window_len, 'd')
else:
W = eval('np.' + window + '(window_len)')
Y = np.convolve(W/W.sum(), S, mode='valid')
window_len = int(window_len)
#since window_len is odd, I'll use floor division
return Y[(window_len//2):-(window_len//2)]
#%%
def single_extreme(X, mode='min'):
"""Returns an absolute extreme of a multidimensional array.
Parameters
----------
X : list, array
Multidimensional array-like of numbers.
mode : str {'min', 'max'}
Indicates which extreme to find (if a minimum or maximum).
Returns
-------
float, int
Value of the extreme.
"""
if mode not in ['min', 'max']:
raise ValueError("mode must be 'min' or 'max'")
if mode == 'min':
while True:
try:
X = list(X)
X[0]
X = min(X[i] for i in range(len(X)))
except:
return X
else:
while True:
try:
X = list(X)
X[0]
X = max(X[i] for i in range(len(X)))
except:
return X
#%% Distance between peaks
def peak_separation(signal, time=1, return_error=False,
*args, **kwargs):
'''Calculates mean peak separation.
Parameters
----------
signal : array-like
Signal to evaluates peaks on
time=1 : scalar or array-like
If scalar, it should indicate time step. If array-like,
should be same lenght as signal and correspond to time
of measurements.
return_error=False : bool
If True, returns (peak_separation, error_peak_separation). Else,
just returns peak_separation. Error is calculated as the standard
deviation of the peak separations over the square root of the ammount
of peaks found.
Other parameters
----------------
Parameters passed to scipy.signal.find_peaks.
height
threshold
distance
prominence
width
wlen
rel_height
Returns
-------
string : str
Written answer.
See also: scipy.signal.find_peaks
'''
peaks = find_peaks(signal, *args, **kwargs)[0]
if len(peaks)<2: #no peaks found
raise ValueError('Not enough peaks found with given parameters.')
condition = isinstance(time, (list, tuple, np.ndarray))
if condition:
if not len(signal)==len(time):
raise ValueError('Time and signal must be same lenght.')
peaks = time[peaks]
peak_differences = np.diff(peaks)
if condition:
if return_error:
return (np.mean(peak_differences),
np.std(peak_differences) / np.sqrt(len(peak_differences)))
else:
return np.mean(peak_differences)
else:
if return_error:
return (np.mean(peak_differences) * time,
(np.std(peak_differences) / np.sqrt(len(peak_differences))) * time)
else:
return np.mean(peak_differences) * time
#%% PID class
stuff_to_log = ('feedback_value',
'new_value',
'p_term',
'i_term',
'd_term')
# Create a named tuple with default value for all fields an empty list
#PIDlog = namedtuple('PIDLog', stuff_to_log, defaults=[[]]*len(stuff_to_log)) #for Python 3.7 nd up
PIDlog = namedtuple('PIDLog', stuff_to_log)
class PIDController:
"""A simple class implementing a PID contoller that keeps a log.
Based on https://gist.github.com/hgrecco/16edd24989c63b6fc2eeb829c6d6b7ea
Parameters
----------
setpoint : int, float
Value the PID is suposed to achieve and keep constant.
kp : int, float, optional
Value of the PID proportional term's constant. Default=1.
ki : int, float, optional
Value of the PID integral term's constant. Default=0.
kd : int, float, optional
Value of the PID derivative term's constant. Default=0.
dt : int, float, optional
Value of the time interval. Default=1.
log_data : bool, optional
Devides whether to keep a log of every calculation or not. Default=False.
Other parameters
----------------
max_log_lengh : int, optional
Maximum allowed log length. Default 1e7
on_log_overflow : str {'del', 'delall', 'write'}, optional
Decides action to take when max_log_length is reached. 'del' deletes oldest
entry and adds new one (like in a fixed-size buffer), 'delall' resets the
log to an empty list, 'write' writes the log to a log.txt file and clears
the log. Won't overwrite existing log.txt files.
integration_mode : str {'full', 'weighted', 'fixed'}, optional
Sets integral term mode. 'full' integrates over all time, i.e. since the PID
was last reset. 'weighted' gives a wight to each value that shrinks with each
ieration, making older samples less important. 'fixed' integrates inside a
window of fixed length.
integration_params : dict, optional
Parameters for chosen integration mode.
Example
-------
>>> pid = PIDController(42, 3, 2, 1, log_data=True)
>>> while True:
>>> signal = read()
actuator = pid.calculate(signal)
write(actuator)
the_log = pid.log
pid.reset()
pid.clearlog()
"""
def __init__(self, setpoint, kp=1.0, ki=0.0, kd=0.0, dt=1,
log_data=False, max_log_length=1e6, on_log_overflow='del',
integration_mode='full', integration_params={}):
self.setpoint = setpoint
self.kp = kp
self.ki = ki
self.kd = kd
self.dt = dt
#fresh p, i and d terms
self.reset()
# start with a fresh log
self.log_data = log_data
self.clearlog()
def __repr__(self):
string = 'PIDController with parameters: kp={}, ki={}, kd={}'
return string.format(self.kp, self.ki, self.kd)
def __str__(self):
string = 'kp={}, ki={}, kd={}'
return string.format(self.kp, self.ki, self.kd)
def calculate(self, feedback_value):
# self.last_feedback = feedback_value
error = self.setpoint - feedback_value
delta_error = error - self.last_error
self.p_term = error
self.i_term += error * self.dt
self.d_term = delta_error / self.dt
self.last_error = error
new_value = self.kp * self.p_term
new_value += self.ki * self.i_term
new_value += self.kd * self.d_term
self.last_log = PIDlog._make([feedback_value, new_value,
self.p_term, self.i_term, self.d_term])
# Only log data if I ask it to
if self.log_data:
self.__log.append(self.last_log)
return new_value
def clearlog(self):
self.__log = []
self.last_log = PIDlog._make([[]]*len(stuff_to_log))
def reset(self):
self.last_error = 0
self.p_term = 0
self.i_term = 0
self.d_term = 0
# self.last_feedback = 0
@property
def log(self):
#read-only
if self.__log:
return self.__makelog__()
else:
raise ValueError('No logged data.')
@property
def log_data(self):
return self.__log_data
@log_data.setter
def log_data(self, value):
if not isinstance(value, bool):
raise TypeError('log_data must be bool.')
self.__log_data = value
def __makelog__(self):
'''Make a PIDlog nuamedtuple containing the list of each
value in each field.'''
log = []
for i in range(len(self.last_log)):
log.append([prop[i] for prop in self.__log])
return PIDlog._make(log)
#%%
def linear_fit(X, Y, dY=None, showplot=True,
plot_some_errors=(False, 20), **kwargs):
"""Applies linear fit and returns m, b and Rsq. Can also plot it.
By default, it applies minimum-square linear fit 'y = m*x + b'. If
dY is specified, it applies weighted minimum-square linear fit.
Parameters
----------
X : np.array, list
Independent X data to fit.
Y : np-array, list
Dependent Y data to fit.
dY : np-array, list
Dependent Y data's associated error.
shoplot : bool
Says whether to plot or not.
plot_some_errors : tuple (bool, int)
Says wehther to plot only some error bars (bool) and specifies
the number of error bars to plot.
Returns
-------
rsq : float
Linear fit's R Square Coefficient.
(m, dm): tuple (float, float)
Linear fit's slope: value and associated error, both as float.
(b, db): tuple (float, float)
Linear fit's origin: value and associated error, both as float.
Other Parameters
----------------
txt_position : tuple (horizontal, vertical), optional
Indicates the parameters' text position. Each of its values
should be a number (distance in points measured on figure).
But vertical value can also be 'up' or 'down'.
mb_units : tuple (m_units, b_units), optional
Indicates the parameter's units. Each of its values should be a
string.
mb_error_digits : tuple (m_error_digits, b_error_digits), optional
Indicates the number of digits to print in the parameters'
associated error. Default is 3 for slope 'm' and 2 for intercept
'b'.
mb_string_scale : tuple (m_string_scale, b_string_scale), optional
Indicates whether to apply string prefix's scale to printed
parameters. Each of its values should be a bool; i.e.: 'True'
means 'm=1230.03 V' with 'dm = 10.32 V' would be printed as
'm = (1.230 + 0.010) V'. Default is '(False, False)'.
rsq_decimal_digits : int, optional.
Indicates the number of digits to print in the Rsq. Default: 3.
Warnings
--------
The returned Rsq doesn't take dY weights into account.
"""
# ¿Cómo hago Rsq si tengo pesos?
if dY is None:
W = None
else:
W = 1/dY**2
fit_data = np.polyfit(X, Y, 1, cov=True, w=W)
m = fit_data[0][0]
dm = sqrt(fit_data[1][0,0])
b = fit_data[0][1]
db = sqrt(fit_data[1][1,1])
rsq = 1 - sum( (Y - m*X - b)**2 )/sum( (Y - np.mean(Y))**2 )
try:
kwargs['text_position']
except KeyError:
if m > 1:
aux = 'up'
else:
aux = 'down'
kwargs['text_position'] = (.02, aux)
if showplot:
plt.figure()
if dY is None:
plt.plot(X, Y, 'b.', zorder=0)
else:
if plot_some_errors[0] == False:
plt.errorbar(X, Y, yerr=dY, linestyle='', marker='.',
ecolor='b', elinewidth=1.5, zorder=0)
else:
plt.errorbar(X, Y, yerr=dY, linestyle='', marker='.',
color='b', ecolor='b', elinewidth=1.5,
errorevery=len(Y)/plot_some_errors[1],
zorder=0)
plt.plot(X, m*X+b, 'r-', zorder=100)
plt.legend(["Ajuste lineal ponderado","Datos"])
kwargs_list = ['mb_units', 'mb_string_scale',
'mb_error_digits', 'rsq_decimal_digits']
kwargs_default = [('', ''), (False, False), (3, 2), 3]
for key, value in zip(kwargs_list, kwargs_default):
try:
kwargs[key]
except KeyError:
kwargs[key] = value
if kwargs['text_position'][1] == 'up':
vertical = [.9, .82, .74]
elif kwargs['text_position'][1] == 'down':
vertical = [.05, .13, .21]
else:
if kwargs['text_position'][1] <= .08:
fact = .08
else:
fact = -.08
vertical = [kwargs['text_position'][1]+fact*i for i in range(3)]
plt.annotate('m = {}'.format(error_value(
m,
dm,
error_digits=kwargs['mb_error_digits'][0],
units=kwargs['mb_units'][0],
string_scale=kwargs['mb_string_scale'][0],
one_point_scale=True,
legend=True)),
(kwargs['text_position'][0], vertical[0]),
xycoords='axes fraction')
plt.annotate('b = {}'.format(error_value(
b,
db,
error_digits=kwargs['mb_error_digits'][1],
units=kwargs['mb_units'][1],
string_scale=kwargs['mb_string_scale'][1],
one_point_scale=True,
legend=True)),
(kwargs['text_position'][0], vertical[1]),
xycoords='axes fraction')
rsqft = r'$R^2$ = {:.' + str(kwargs['rsq_decimal_digits']) + 'f}'
plt.annotate(rsqft.format(rsq),
(kwargs['text_position'][0], vertical[2]),
xycoords='axes fraction')
plt.show()
return rsq, (m, dm), (b, db)
#%%
def nonlinear_fit(X, Y, fitfunction, initial_guess=None, dY=None,
showplot=True, plot_some_errors=(False, 20),
**kwargs):
"""Applies nonlinear fit and returns parameters and Rsq. Plots it.
By default, it applies minimum-square fit. If dY is specified, it
applies weighted minimum-square fit.
Parameters
----------
X : np.array, list
Independent X data to fit.
Y : np-array, list
Dependent Y data to fit.
fitfunction : function
The function you want to apply. Its arguments must be 'X' as
np.array followed by the other parameters 'a0', 'a1', etc as
float. Must return only 'Y' as np.array.
initial_guess=None : list, optional
A list containing a initial guess for each parameter.
dY : np-array, list, optional
Dependent Y data's associated error.
shoplot : bool
Says whether to plot or not.
plot_some_errors : tuple (bool, int)
Says wehther to plot only some error bars (bool) and specifies
the number of error bars to plot.
Returns
-------
rsq : float
Fit's R Square Coefficient.
parameters : list of tuples
Fit's parameters, each as a tuple containing value and error,
both as tuples.
Other Parameters
-----------------
txt_position : tuple (horizontal, vertical), optional
Indicates the parameters' text position. Each of its values
should be a number (distance in points measured on figure).
But vertical value can also be 'up' or 'down'.
par_units : list, optional
Indicates the parameters' units. Each of its values should be a
string.
par_error_digits : list, optional
Indicates the number of digits to print in the parameters'
associated error. Default is 3 for all of them.
par_string_scale : list, optional
Indicates whether to apply string prefix's scale to printed
parameters. Each of its values should be a bool. Default is
False for all of them.
rsq_decimal_digits : int, optional.
Indicates the number of digits to print in the Rsq. Default: 3.
Warnings
--------
The returned Rsq doesn't take dY weights into account.
"""
if not isinstance(X, np.ndarray):
raise TypeError("X should be a np.array")
if not isinstance(Y, np.ndarray):
raise TypeError("Y should be a np.array")
if not isinstance(dY, np.ndarray) and dY is not None:
raise TypeError("dY shouuld be a np.array")
if len(X) != len(Y):
raise IndexError("X and Y must have same lenght")
if dY is not None and len(dY) != len(Y):
raise IndexError("dY and Y must have same lenght")
if dY is None:
W = None
else:
W = 1/dY**2
parameters, covariance = curve_fit(fitfunction, X, Y,
p0=initial_guess, sigma=W)
rsq = sum( (Y - fitfunction(X, *parameters))**2 )
rsq = rsq/sum( (Y - np.mean(Y))**2 )
rsq = 1 - rsq
if showplot:
plt.figure()
if dY is None:
plt.plot(X, Y, 'b.', zorder=0)
else:
if plot_some_errors[0] == False:
plt.errorbar(X, Y, yerr=dY, linestyle='b', marker='.',
ecolor='b', elinewidth=1.5, zorder=0)
else:
plt.errorbar(X, Y, yerr=dY, linestyle='-', marker='.',
color='b', ecolor='b', elinewidth=1.5,
errorevery=len(Y)/plot_some_errors[1],
zorder=0)
plt.plot(X, fitfunction(X, *parameters), 'r-', zorder=100)
plt.legend(["Ajuste lineal ponderado","Datos"])
n = len(parameters)
kwargs_list = ['text_position', 'par_units', 'par_string_scale',
'par_error_digits', 'rsq_decimal_digits']
kwargs_default = [(.02,'up'), ['' for i in range(n)],
[False for i in range(n)],
[3 for i in range(n)], 3]
for key, value in zip(kwargs_list, kwargs_default):
try:
kwargs[key]
if key != 'text_position':
try:
if len(kwargs[key]) != n:
print("Wrong number of parameters",
"on '{}'".format(key))
kwargs[key] = value
except TypeError:
kwargs[key] = [kwargs[key] for i in len(n)]
except KeyError:
kwargs[key] = value
if kwargs['text_position'][1] == 'up':
vertical = [.9-i*.08 for i in range(n+1)]
elif kwargs['text_position'][1] == 'down':
vertical = [.05+i*.08 for i in range(n+1)]
else:
if kwargs['text_position'][1] <= .08:
fact = .08
else:
fact = -.08
vertical = [
kwargs['text_position'][1]+fact*i for i in range(n+1)]
for i in range(n):
plt.annotate(
'a{} = {}'.format(
i,
error_value(
parameters[i],
sqrt(covariance[i,i]),
error_digits=kwargs['par_error_digits'][i],
units=kwargs['par_units'][i],
string_scale=kwargs['par_string_scale'][i],
one_point_scale=True,
legend=True)),
(kwargs['text_position'][0], vertical[i]),
xycoords='axes fraction')
rsqft = r'$R^2$ = {:.' + str(kwargs['rsq_decimal_digits'])+'f}'
plt.annotate(rsqft.format(rsq),
(kwargs['text_position'][0], vertical[-i]),
xycoords='axes fraction')
plt.show()
parameters_error = np.array(
[sqrt(covariance[i,i]) for i in range(n)])
parameters = list(zip(parameters, parameters_error))
return rsq, parameters
#%%
def error_value(X, dX, error_digits=1, units='',
string_scale=True, one_point_scale=False, legend=False):
"""Rounds up value and error of a measure. Also makes a latex string.
This function takes a measure and its error as input. Then, it
rounds up both of them in order to share the same amount of decimal
places.
After that, it generates a latex string containing the rounded up
measure. For that, it can rewrite both value and error so that the
classical prefix scale of units can be applied.
Parameters
----------
X : float
Measurement's value.
dX : float
Measurement's associated error.
error_digits=2 : int, optional.
Desired number of error digits.
units='' : str, optional.
Measurement's units.
string_scale=True : bool, optional.
Whether to apply the classical prefix scale or not.
one_point_scale=False : bool, optional.
Applies prefix with one order less.
legend=False : bool, optional.
Says whether it is for the legend of a plot or not.
Returns
-------
latex_str : str
Latex string containing value and error.
Examples
--------
>> error_value(1.325412, 0.2343413)
'(1.33$\\pm$0.23)'
>> error_value(1.325412, 0.2343413, error_digits=3)
'(1.325$\\pm$0.234)'
>> error_value(.133432, .00332, units='V')
'\\mbox{(133.4$\\pm$3.3) mV}'
>> error_value(.133432, .00332, one_point_scale=True, units='V')
'\\mbox{(0.1334$\\pm$0.0033) V}'
>> error_value(.133432, .00332, string_scale=False, units='V')
'\\mbox{(1.334$\\pm$0.033)$10^{-1}$ V}'
See Also
--------
copy
"""
# First, I string-format the error to scientific notation with a
# certain number of digits
if error_digits >= 1:
aux = '{:.' + str(error_digits) + 'E}'
else:
print("Unvalid 'number_of_digits'! Changed to 1 digit")
aux = '{:.0E}'
error = aux.format(dX)
error = error.split("E") # full error (string)
error_order = int(error[1]) # error's order (int)
error_value = error[0] # error's value (string)
# Now I string-format the measure to scientific notation
measure = '{:E}'.format(X)
measure = measure.split("E") # full measure (string)
measure_order = int(measure[1]) # measure's order (int)
measure_value = float(measure[0]) # measure's value (string)
# Second, I choose the scale I will put both measure and error on
# If I want to use the string scale...
if -12 <= measure_order < 12 and string_scale:
prefix = ['p', 'n', r'$\mu$', 'm', '', 'k', 'M', 'G']
scale = [-12, -9, -6, -3, 0, 3, 6, 9, 12]
for i in range(8):
if not one_point_scale:
if scale[i] <= measure_order < scale[i+1]:
prefix = prefix[i] # prefix to the unit
scale = scale[i] # order of both measure and error
break
else:
if scale[i]-1 <= measure_order < scale[i+1]-1:
prefix = prefix [i]
scale = scale[i]
break
used_string_scale = True
# ...else, if I don't or can't...
else:
scale = measure_order
prefix = ''
used_string_scale = False
# Third, I actually scale measure and error according to 'scale'
# If error_order is smaller than scale...
if error_order < scale:
if error_digits - error_order + scale - 1 >= 0:
aux = '{:.' + str(error_digits - error_order + scale - 1)
aux = aux + 'f}'
error_value = aux.format(
float(error_value) * 10**(error_order - scale))
measure_value = aux.format(
measure_value * 10**(measure_order - scale))
else:
error_value = float(error_value) * 10**(error_order - scale)
measure_value = float(measure_value)
measure_value = measure_value * 10**(measure_order - scale)
# Else, if error_order is equal or bigger than scale...
else:
aux = '{:.' + str(error_digits - 1) + 'f}'
error_value = aux.format(
float(error_value) * 10**(error_order - scale))
measure_value = aux.format(
float(measure_value) * 10**(measure_order - scale))
# Forth, I make a latex string. Ex.: '(1.34$pm$0.32) kV'
latex_str = r'({}$\pm${})'.format(measure_value, error_value)
if not used_string_scale and measure_order != 0:
latex_str = latex_str + r'$10^{' + '{:.0f}'.format(scale) + '}$'
elif used_string_scale:
latex_str = latex_str + ' ' + prefix
if units != '':
if latex_str[-1] == ' ':
latex_str = latex_str + units
else:
latex_str = latex_str + ' ' + units
if units != '' or prefix:
if not legend:
latex_str = r'\mbox{' + latex_str + '}'
return latex_str
#%%
def multimeter_error(value, porcentual_error, extra_digits, resolution):
"""Returns absolute error of a multimeter's measurement.
Parameters
----------
value : int, float
Measurement's value on certain units.
porcentual_error : int, float, {0 < porcentual_error < 100}
Measurement scale's porcentual error, as stated at
multimeter's manual; i.e.: '(0.5% + 3d)' at 200 Ohm scale
with resolution .1 Ohm means 'porcentual_error=0.5'.
extra_digits : int
Measurement scale's added digits, as stated at
multimeter's manual; i.e. '(0.5% + 3d)' at 200 Ohm scale
with resolution .1 Ohm means 'extra_digits=3'.
resolution : int, float
Measurement scale's resolution on value's units; i.e.
'(0.5% + 3d)' at 200 Ohm scale with resolution .1 Ohm
means 'resolution=0.1' if I want the error of 143.7 Ohm
and I want to run 'multimeter_error(value=143.7)'.
Returns
-------
error : int, float
Measurement's absolute error.
"""
error = porcentual_error * value / 100
error = error + extra_digits * resolution
return error
#%%
def compare_error_value(X1, dX1, X2, dX2):
"""Comparison of two measuremntes X1+-dX1 and X2+-dX2.
Parameters
----------
X1 : int, float
First value.
dX1 : int, float.
First value's error.
X2 : int, float
Second value.
dX2 : int, float
Second value's error.
Returns
-------
string : str
Written answer.
"""
from numpy import array
A1 = (X1-dX1, X1+dX1)
A2 = (X2-dX2, X2+dX2)
answer = array([0,0])
if A2[0] <= X1[0] <= A2[1]:
answer[0] = answer[0]+1
if A1[0]<=X2[0]<=A1[1]:
answer[0] = answer[0]+1
if A1[0]<=A2[0]<=A1[1]:
answer[1] = answer[1]+1
if A2[0]<=A1[0]<=A2[1]:
answer[1] = answer[1]+1
if A1[0]<=A2[1]<=A1[1]:
answer[1] = answer[1]+1
if A2[0]<=A1[1]<=A2[1]:
answer[1] = answer[1]+1