Editing
Epidemiology
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> {{BloomIntro}} Epidemiology is the study of how often diseases occur in different groups of people and why. It is the "Detective Work" of public health. While a doctor focuses on a single patient, an epidemiologist focuses on a whole '''Population'''. By tracking the "Who, What, Where, and When" of a health event—whether it's an outbreak of food poisoning, a global pandemic, or the link between smoking and cancer—epidemiologists identify risks and design interventions to prevent disease and save lives on a massive scale. </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Epidemiology''' — The study of the distribution and determinants of health-related states in specified populations. * '''Outbreak''' — A sudden increase in occurrences of a disease in a particular time and place. * '''Epidemic''' — A widespread occurrence of an infectious disease in a community at a particular time. * '''Pandemic''' — An epidemic that has spread over several countries or continents, usually affecting a large number of people. * '''Endemic''' — A disease that is constantly present in a specific population or region (e.g., Malaria in some tropical areas). * '''Incidence''' — The number of ''new'' cases of a disease that develop in a population during a specific time period. * '''Prevalence''' — The total number of ''existing'' cases (new and old) in a population at a specific time. * '''Mortality Rate''' — The number of deaths in a given area or period from a particular cause. * '''Morbidity''' — The condition of being diseased; the rate of disease in a population. * '''Risk Factor''' — Any attribute, characteristic, or exposure of an individual that increases the likelihood of developing a disease. * '''R0 (Basic Reproduction Number)''' — The average number of people that one infected person will pass the virus to in a susceptible population. * '''Vector''' — A living organism that transmits an infectious agent from an infected animal to a human (e.g., mosquitoes, ticks). * '''Zoonosis''' — An infectious disease that is transmitted from animals to humans (e.g., Rabies, COVID-19). * '''Case-Control Study''' — A study that compares people with a disease to people without it to find common risk factors. </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Epidemiology is understood through the '''Epidemiologic Triangle'''. '''1. The Triangle''': To have a disease outbreak, you need three things: * '''The Agent''': The cause (e.g., a virus, bacteria, or chemical). * '''The Host''': The person or animal that can get the disease. * '''The Environment''': The surroundings that allow the agent and host to meet (e.g., crowded housing, dirty water, or climate). If you break any one "leg" of the triangle, the disease stops spreading. '''2. The R0 (R-Nought)''': * If $R0 < 1$: The disease will eventually die out. * If $R0 = 1$: The disease will stay stable (Endemic). * If $R0 > 1$: The disease will grow exponentially (Epidemic). '''3. Association vs. Causation''': Just because people who drink coffee have fewer heart attacks doesn't mean coffee ''causes'' heart health. It might be that coffee drinkers also exercise more. Epidemiologists use "Hill's Criteria" to determine if a link is actually a cause (e.g., Is the link strong? Does it happen in every study? Does it make biological sense?). '''Herd Immunity''': When a large enough portion of a population is immune (through vaccination or past infection), the disease can't find new hosts to jump to, protecting even those who aren't immune. </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'Infection Spread' (The SIR Model):''' <syntaxhighlight lang="python"> def estimate_new_cases(susceptible, infected, r0_value, recovery_rate): """ Simplified SIR (Susceptible, Infected, Recovered) logic. """ # New infections depend on how many people are 'left' to catch it prob_infection = (r0_value * recovery_rate) / susceptible if susceptible > 0 else 0 new_infections = int(infected * susceptible * prob_infection) # People recovering new_recoveries = int(infected * recovery_rate) return { "New Infections": new_infections, "New Recoveries": new_recoveries, "Remaining Susceptible": susceptible - new_infections } # Small town of 1000, 10 infected, R0 of 2.5 print(estimate_new_cases(1000, 10, 2.5, 0.1)) # This is how we 'Flatten the Curve'—by reducing R0 (masks, # distance) to prevent hospitals from being overwhelmed. </syntaxhighlight> ; Iconic Investigations : '''John Snow (1854)''' → The "Father of Epidemiology"; he traced a cholera outbreak in London to a single water pump, proving it was waterborne, not "bad air." : '''The Framingham Heart Study''' → A decades-long study that first identified high blood pressure and cholesterol as risks for heart disease. : '''The Smallpox Eradication''' → A global effort that used "Ring Vaccination" (vaccinating everyone around a single case) to wipe a disease off the planet. : '''Ebola 2014''' → Anthropologists and epidemiologists working together to adapt burial rituals to stop the spread of a deadly virus. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Incidence vs. Prevalence ! Feature !! Incidence (The 'Flow') !! Prevalence (The 'Pool') |- | Measure || New cases only || All active cases |- | Use Case || To find the 'Cause' (Why are people getting sick?) || To plan 'Resources' (How many beds do we need?) |- | Formula || New cases / Population at risk || Total cases / Total population |- | Analogy || Water flowing into a bathtub || The total water in the bathtub |} '''The Concept of "Confounding"''': This is the "Ghost in the Machine." A confounder is a hidden variable that is linked to both the risk and the disease. If you study "Lighter use" and "Lung cancer," you'll find a link—but the confounder is "Smoking." Analyzing and "Controlling" for these ghosts is the hardest part of epidemiology. </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating an epidemiologic study: # '''Sample Size''': Is the study large enough to find a rare link? # '''Selection Bias''': Did the study only look at healthy people who could afford to join? # '''Recall Bias''': If you ask a sick person what they ate 10 years ago, will they remember accurately? # '''Generalization''': Does a study of middle-aged men in Norway apply to teenagers in Brazil? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''Digital Epidemiology''': Using Google searches, social media trends, and wastewater data to find an outbreak ''before'' people even go to the doctor. # '''Precision Public Health''': Using genetics to identify exactly which people are most at risk during a pandemic. # '''One Health''': A movement to study human, animal, and environmental health together (since most new diseases come from animals). # '''AI Outbreak Prediction''': Training AI to simulate billions of "What If" scenarios for the next global pandemic. [[Category:Health Science]] [[Category:Biology]] [[Category:Statistics]] </div>
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Template:BloomIntro
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information