-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathganancia.gp
67 lines (59 loc) · 2.56 KB
/
ganancia.gp
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
set terminal png transparent nocrop enhanced font arial 8 size 500,250
set datafile separator ","
set style data linespoints
set output 'cta_cte_mes.png'
set title "Cuenta corriente mes a mes"
plot 'cta_cte_mes_2003.txt' using 1 title "2003" ,\
'cta_cte_mes_2004.txt' using 1 title "2004" , \
'cta_cte_mes_2005.txt' using 1 title "2005" , \
'cta_cte_mes_2006.txt' using 1 title "2006" , \
'cta_cte_mes_2007.txt' using 1 title "2007"
set output 'cta_cte_acu.png'
set title "Cuenta corriente acumulada"
plot 'cta_cte_acu_2003.txt' using 1 title "2003" ,\
'cta_cte_acu_2004.txt' using 1 title "2004" , \
'cta_cte_acu_2005.txt' using 1 title "2005" , \
'cta_cte_acu_2006.txt' using 1 title "2006" , \
'cta_cte_acu_2007.txt' using 1 title "2007"
set output 'egresos_mes.png'
set title "Egresos mes a mes"
plot 'egresos_mes_2003.txt' using 1 title "2003" ,\
'egresos_mes_2004.txt' using 1 title "2004" , \
'egresos_mes_2005.txt' using 1 title "2005" , \
'egresos_mes_2006.txt' using 1 title "2006" , \
'egresos_mes_2007.txt' using 1 title "2007"
set output 'egresos_acu.png'
set title "Egresos acumulados"
plot 'egresos_acu_2003.txt' using 1 title "2003" ,\
'egresos_acu_2004.txt' using 1 title "2004" , \
'egresos_acu_2005.txt' using 1 title "2005" , \
'egresos_acu_2006.txt' using 1 title "2006" , \
'egresos_acu_2007.txt' using 1 title "2007"
set output 'ingresos_mes.png'
set title "Ingresos mes a mes"
plot 'ingresos_mes_2003.txt' using 1 title "2003" ,\
'ingresos_mes_2004.txt' using 1 title "2004" , \
'ingresos_mes_2005.txt' using 1 title "2005" , \
'ingresos_mes_2006.txt' using 1 title "2006" , \
'ingresos_mes_2007.txt' using 1 title "2007"
set output 'ingresos_acu.png'
set title "Ingresos acumulados"
plot 'ingresos_acu_2003.txt' using 1 title "2003" ,\
'ingresos_acu_2004.txt' using 1 title "2004" , \
'ingresos_acu_2005.txt' using 1 title "2005" , \
'ingresos_acu_2006.txt' using 1 title "2006" , \
'ingresos_acu_2007.txt' using 1 title "2007"
set output 'ganancia_mes.png'
set title "Ganancia mes a mes"
plot 'ganancia_mes_2003.txt' using 1 title "2003" ,\
'ganancia_mes_2004.txt' using 1 title "2004" , \
'ganancia_mes_2005.txt' using 1 title "2005" , \
'ganancia_mes_2006.txt' using 1 title "2006" , \
'ganancia_mes_2007.txt' using 1 title "2007"
set output 'ganancia_acu.png'
set title "Ganancia acumulada"
plot 'ganancia_acu_2003.txt' using 1 title "2003" ,\
'ganancia_acu_2004.txt' using 1 title "2004" , \
'ganancia_acu_2005.txt' using 1 title "2005" , \
'ganancia_acu_2006.txt' using 1 title "2006" , \
'ganancia_acu_2007.txt' using 1 title "2007"