-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ID modeling periods, rates, and fractions? #48
Comments
#51 finds the statements in the papers that give the incubation period for covid19. What to do next: if that statement references a paper we need to see if the dataset also has that paper. We want to create a list of all the primary sources where the incubation period is given. This also helps us see which sources are used. Worst case scenario all the papers are referencing the same paper. |
From Lauren: Text Data Mining Words • ”incubation period” |
papers that mention the current covid pandemic looking for sentences that mention "incubation period" along with "day" (to filter out staments about web lab incubation periods)
|
after all the filtering for covid19 papers and sentences. not all the keywords existed in the papers provided
|
|
Paper counts after fixing some regex covid19 mentioned papers Originally filter_words_lower_regex = [
r"covid\s?-?\s?19", # covid-19
r"sars-?cov-?2", # sars-cov-2
r"ncov", # ncov
r"coronavirus", # coronavirus
] changed to account for matches in the middle of words filter_words_lower_regex = [
r".*covid\s?-?\s?19.*", # covid-19
r".*sars-?cov-?2.*", # sars-cov-2
r".*ncov.*", # ncov
r".*coronavirus.*", # coronavirus
]
|
"asymptomatic" and "fraction" |
Go through the papers to get the range of incubation periods used in the papers. This will help create a distribution of values that can be used to parameterize epi models. This was from today's call with Lauren Childs.
Get a dataset of values along with the paper metadata along with the geographic location the incubation period is for.
The text was updated successfully, but these errors were encountered: