├── .gitignore ├── documents ├── confidence_intervals.pdf └── odds_ratios.pdf ├── media ├── ci_plot.gif ├── lat_lng.gif ├── standard_deviation_diagram.svg ├── summation_product.png └── you-three.jpeg ├── not-where-you-expect.md ├── readme.md └── working-with-data-in-r.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdukes/how-to/HEAD/.gitignore -------------------------------------------------------------------------------- /documents/confidence_intervals.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdukes/how-to/HEAD/documents/confidence_intervals.pdf -------------------------------------------------------------------------------- /documents/odds_ratios.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdukes/how-to/HEAD/documents/odds_ratios.pdf -------------------------------------------------------------------------------- /media/ci_plot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdukes/how-to/HEAD/media/ci_plot.gif -------------------------------------------------------------------------------- /media/lat_lng.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdukes/how-to/HEAD/media/lat_lng.gif -------------------------------------------------------------------------------- /media/standard_deviation_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdukes/how-to/HEAD/media/standard_deviation_diagram.svg -------------------------------------------------------------------------------- /media/summation_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdukes/how-to/HEAD/media/summation_product.png -------------------------------------------------------------------------------- /media/you-three.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdukes/how-to/HEAD/media/you-three.jpeg -------------------------------------------------------------------------------- /not-where-you-expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdukes/how-to/HEAD/not-where-you-expect.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdukes/how-to/HEAD/readme.md -------------------------------------------------------------------------------- /working-with-data-in-r.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdukes/how-to/HEAD/working-with-data-in-r.md --------------------------------------------------------------------------------