-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
38 lines (34 loc) · 909 Bytes
/
config.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
# Sobre a coleta de dados no SIA:
# Vamos analisar as APACs (Autorização de Procedimentos Ambulatoriais de Alta Complexidade)
# Filtrar por
# - Quimioterapia: códigos 03.04.02 até 03.04.08
# - Radioterapia: código 03.04.01
# - Ano: 2018 e 2019
# - CID: C00 até C75
# AQ - APAC de Quimioterapia
# AR - APAC de Radioterapia
groups = ['AQ', 'AR']
states = ['AC', 'AL', 'AP', 'AM', 'BA', 'CE', 'DF', 'ES', 'GO', 'MA', 'MT', 'MS', 'MG', 'PA', 'PB', 'PR', 'PE', 'PI', 'RJ', 'RN', 'RS', 'RO', 'RR', 'SC', 'SP', 'SE', 'TO']
years = [2018, 2019]
months = list(range(1, 13))
filtro_max_cid = 75
columns = [
'AP_CODUNI',
'AP_CMP',
'AP_PRIPAL',
'AP_VL_AP',
'AP_UFMUN',
'AP_TPUPS',
'AP_NUIDADE',
'AP_SEXO',
'AP_RACACOR',
'AP_MUNPCN',
'AP_UFDIF',
'AP_MNDIF',
'AP_OBITO',
'AP_UNISOL',
'AP_CIDCAS',
'AP_CIDPRI',
'AP_CIDSEC',
'AP_ETNIA',
]