├── .gitattributes ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── evolution.R ├── games.R ├── popgen.R └── rcd.R ├── README.md ├── inst └── CITATION └── man ├── clt.Rd ├── coalescent.plot.Rd ├── drift.selection.Rd ├── founder.event.Rd ├── freqdep.Rd ├── genetic.drift.Rd ├── hardy.weinberg.Rd ├── hawk.dove.Rd ├── msd.Rd ├── mutation.selection.Rd ├── phenotype.freq.Rd ├── rcd.Rd ├── selection.Rd └── sexratio.Rd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/evolution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/R/evolution.R -------------------------------------------------------------------------------- /R/games.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/R/games.R -------------------------------------------------------------------------------- /R/popgen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/R/popgen.R -------------------------------------------------------------------------------- /R/rcd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/R/rcd.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/README.md -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/clt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/clt.Rd -------------------------------------------------------------------------------- /man/coalescent.plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/coalescent.plot.Rd -------------------------------------------------------------------------------- /man/drift.selection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/drift.selection.Rd -------------------------------------------------------------------------------- /man/founder.event.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/founder.event.Rd -------------------------------------------------------------------------------- /man/freqdep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/freqdep.Rd -------------------------------------------------------------------------------- /man/genetic.drift.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/genetic.drift.Rd -------------------------------------------------------------------------------- /man/hardy.weinberg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/hardy.weinberg.Rd -------------------------------------------------------------------------------- /man/hawk.dove.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/hawk.dove.Rd -------------------------------------------------------------------------------- /man/msd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/msd.Rd -------------------------------------------------------------------------------- /man/mutation.selection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/mutation.selection.Rd -------------------------------------------------------------------------------- /man/phenotype.freq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/phenotype.freq.Rd -------------------------------------------------------------------------------- /man/rcd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/rcd.Rd -------------------------------------------------------------------------------- /man/selection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/selection.Rd -------------------------------------------------------------------------------- /man/sexratio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamrevell/learnPopGen/HEAD/man/sexratio.Rd --------------------------------------------------------------------------------