-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalisis_diarios_rapidos.sh
98 lines (87 loc) · 1.57 KB
/
analisis_diarios_rapidos.sh
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
#!/usr/bin/env bash
export LC_ALL=es_MX.UTF-8
export LANG=es_MX.UTF-8
# Casos
# Rscript casos/inicio_sintomas_por_fecha.r
Rscript casos/sir.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
# Clinicos
# Rscript clinicos/clinicos_db_completa.r
Rscript clinicos/tiempos_deteccion.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
# Estados
Rscript estados/estados_casos100mil.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
Rscript estados/estados_muertes_recientes.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
Rscript estados/curvas_casos_estados.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
# Muertes
Rscript muertes/letalidad_mexico.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
Rscript muertes/muertes_fecha.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
Rscript muertes/muertes_nacionales_tipomun.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
# Mundo
Rscript mundo/muertes_mundo.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
# Socioeconomicos
Rscript socioeconomicos/socioeconomicos.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
Rscript socioeconomicos/casos_marginacion_municipal.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
# Municipios
Rscript municipios/muertes_recientes_municipios.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
Rscript municipios/n_municipios.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
Rscript municipios/curva_sintomas_zm.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi
Rscript municipios/mapa_mortalidad.r
if [ $? -ne 0 ]; then
echo "Error"
exit 1
fi