-
Notifications
You must be signed in to change notification settings - Fork 59
Dados por município e/ou cidade (algo mais granular que estado). #55
Conversation
return int(R0) | ||
|
||
|
||
def estimate_E0(value: 'query uf/city value', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vksvinicius e @tiagoyuzo o renato ta propondo essa solucao pra estimar o E0, o que acham? O racional é:
"supondo que hoje foram confirmados 10 casos, no tempo t-t_medio_de_incubação eles foram expostos"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Melhorando a explicação: se hoje apareceram 10 casos novos, no MÍNIMO esses 10 estavam expostos t_medio_de_incubacao
tempo atrás (na média).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Acho que essa é a forma mais simples de fazer, e também suficiente. É o que estávamos discutindo na issue #13
Só um detalhe: acredito que tenha que somar os casos acumulados entre t=0 e t=t_medio_incubacao, porque todos eles seriam parte do compartimento E no tempo t=0.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Verdade, acho talvez usar cases
ao inves de new_cases
@renatocmaciel ?
elif granularity == 'Município': | ||
E0 = (load_city_covid_data() | ||
.query('city == @value') | ||
.assign(exposed=lambda df: df.new_cases |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.assign(exposed=lambda df: df.new_cases | |
.assign(exposed=lambda df: df.cases |
Closes #52