diff options
Diffstat (limited to 'gestionOMS.py')
-rw-r--r-- | gestionOMS.py | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/gestionOMS.py b/gestionOMS.py index 0ff4d5d..5b773d9 100644 --- a/gestionOMS.py +++ b/gestionOMS.py | |||
@@ -7,6 +7,7 @@ Created on Mon May 18 08:59:11 2020 | |||
7 | """ | 7 | """ |
8 | from gestion_erreurs import * | 8 | from gestion_erreurs import * |
9 | from configuration import * | 9 | from configuration import * |
10 | from gestion_couleurs import * | ||
10 | 11 | ||
11 | import csv | 12 | import csv |
12 | 13 | ||
@@ -35,13 +36,20 @@ def affichepercentile(pc): | |||
35 | def afficheecarttype(z): | 36 | def afficheecarttype(z): |
36 | if z==0: | 37 | if z==0: |
37 | return "Moyenne" | 38 | return "Moyenne" |
38 | elif z<0: | ||
39 | return str(z)+"z" | ||
40 | else: | 39 | else: |
41 | return "+"+str(z)+"z" | 40 | #return ("z = "+str(z)) |
42 | 41 | if z>0: | |
43 | liste_data_labels_p = [(nocol,affichepercentile(pc),degrade(pc)) for (nocol,pc) in liste_data_choisie_p] | 42 | chaine = r"$+"+str(z)+" \sigma$" |
44 | liste_data_labels_z = [(nocol,afficheecarttype(z),degrade((z+3)/3*50) ) for (nocol,z) in liste_data_choisie_z] | 43 | else: |
44 | chaine = r"$"+str(z)+"\sigma$" | ||
45 | return (chaine) | ||
46 | |||
47 | def renvoie_liste_labels(conf,liste_data_choisie_p,liste_data_choisie_z,liste_err): | ||
48 | """ fabrique les deux listes de labels OMS""" | ||
49 | #warning(str(liste_data_choisie_p),liste_err) | ||
50 | liste_data_labels_p = [(nocol,affichepercentile(pc),degrade_choix(conf["couleur1"],conf["couleur2"],conf["couleur3"],pc)) for (nocol,pc) in liste_data_choisie_p] | ||
51 | liste_data_labels_z = [(nocol,afficheecarttype(z),degrade_choix(conf["couleur1"],conf["couleur2"],conf["couleur3"],(z+3)/3*50) ) for (nocol,z) in liste_data_choisie_z] | ||
52 | return liste_data_labels_p,liste_data_labels_z | ||
45 | 53 | ||
46 | #liste_data_labels= liste_data_labels_z | 54 | #liste_data_labels= liste_data_labels_z |
47 | 55 | ||