-
Notifications
You must be signed in to change notification settings - Fork 0
/
estadisticas.py
58 lines (53 loc) · 1.64 KB
/
estadisticas.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
import csv
import pandas
import os
import pandas as pd
from listaDeEventos import eventos
from matplotlib import pyplot
class Stats_Board:
def show_p_per_zone(self):
pyplot.title("Cantidad de personas por zona")
pyplot.xlabel("Zonas",labelpad=6)
pyplot.ylabel("Personas",labelpad=6)
df = pandas.read_csv(os.path.abspath("Database.csv"))
seconddf = pandas.read_csv(os.path.abspath("zona.csv"))
users = open("Database.csv","r")
file = csv.DictReader(users)
zonas=list(seconddf['Nombre'])
nombres = []
i = 0
for col in file:
nombres.append(col['Name'])
i += 1
p_x_zona = [[]]
new=[]
a = 0
for sector in seconddf['Nombre']:
i = 0
for zona in df['Zona']:
if a == zona:
p_x_zona[a].append(nombres[i])
i += 1
else:
i += 1
new.append(len(p_x_zona[a]))
a += 1
p_x_zona.append([])
pyplot.bar(zonas,new)
pyplot.show()
@staticmethod
def showMaxZone(num):
df2 = pandas.read_csv(os.path.abspath("zona.csv"))
if num > len(df2["Nombre"])-1 or num < 0:
return 'el numero ingresado es invalido'
lista = []
for e in eventos.list[num]:
lista.append([e.titulo, e.getPeople()])
lista.sort(reverse=True)
lista = lista[:3]
texto = ''
i = 1
for eventitos in lista:
texto += f'{i} | {eventitos[0]}: {eventitos[1]}.\n'
i += 1
print(texto)