Epi-Gala
Great references
- Jekel's: Epidemiology, Biostatistics, Preventive Medicine, and Public Health, 5th Edition
- Epidemiology: Beyond the Basics, 4th Edition
- Dr. Martin Bland's "An Introduction to Medical Statistics"
- "Data from: The reproducibility of research and the misinterpretation of p-values", Colquhoun (DRYAD 2017)
- "Applied Survival Analysis using R"
- Epidemics: Models and Data Using R Links to an external site
- "Maximum Likelihood, Profile Likelihood, and Penalized Likelihood: A Primer", Cole et al. J of Epidemiology 2013
- Basic Models for Disease Occurrence in Epidemiology, Flanders et al. 1995
Topics
Click on white arrow to view a table of key terms, related chapter readings (above list), demo notebooks, and supplemental readings.
Epi tooklits
Study designs
Advanced topics
R: importing function definitions
ncvTest
source('https://raw.githubusercontent.com/cran/car/master/R/durbinWatsonTest.R');
durbinWatsonTest( fit2 )
source('https://raw.githubusercontent.com/cran/AICcmodavg/master/R/useBIC.R');
message( 'BIC of fit1: ', useBIC( fit1 ) )
source('https://raw.githubusercontent.com/cran/car/master/R/ncvTest.R' );
ncvTest( fit2)
epi.2by2
source('https://raw.githubusercontent.com/cran/epiR/master/R/epi.2by2.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zexact.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zincrate.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zRRwald.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zRRtaylor.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zRRscore.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zORwald.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zORscore.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zlimit.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zORml.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zARwald.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zARscore.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zz2stat.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zlimit.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zMHRD.Sato.R')
source('https://raw.githubusercontent.com/cran/epiR/master/R/zMHRD.GR.R')
epi.2by2( c(13,2163,5,3349) )
riskratio.wald
if (0 & (!exists('riskratio')) )
{
install.packages("epitools")
library( epitools )
} else
{
source( 'https://raw.githubusercontent.com/cran/epitools/master/R/ormidp.test.R' )
source( 'https://raw.githubusercontent.com/cran/epitools/master/R/tab2by2.test.R' )
source( 'https://raw.githubusercontent.com/cran/epitools/master/R/table.margins.R' )
source( 'https://raw.githubusercontent.com/cran/epitools/master/R/riskratio.wald.R' )
source( 'https://raw.githubusercontent.com/cran/epitools/master/R/epitable.R' )
riskratio.wald( matrix( c(11,23,11,22), 2) )
}