├── Makefile ├── README.md ├── analyze.R ├── autoexp.py ├── autoexp_consumer.py ├── autoexp_download_output.py ├── autoexp_pool.py ├── autoexp_producer.py ├── config.py ├── histsummary-slides.emf ├── histsummary-slides.pdf ├── histsummary.pdf ├── paper.pdf ├── paper.tex ├── slides.pptx └── stats.Rnw /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | R CMD Sweave stats.Rnw 3 | pdflatex paper 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/README.md -------------------------------------------------------------------------------- /analyze.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/analyze.R -------------------------------------------------------------------------------- /autoexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/autoexp.py -------------------------------------------------------------------------------- /autoexp_consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/autoexp_consumer.py -------------------------------------------------------------------------------- /autoexp_download_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/autoexp_download_output.py -------------------------------------------------------------------------------- /autoexp_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/autoexp_pool.py -------------------------------------------------------------------------------- /autoexp_producer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/autoexp_producer.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/config.py -------------------------------------------------------------------------------- /histsummary-slides.emf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/histsummary-slides.emf -------------------------------------------------------------------------------- /histsummary-slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/histsummary-slides.pdf -------------------------------------------------------------------------------- /histsummary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/histsummary.pdf -------------------------------------------------------------------------------- /paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/paper.pdf -------------------------------------------------------------------------------- /paper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/paper.tex -------------------------------------------------------------------------------- /slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/slides.pptx -------------------------------------------------------------------------------- /stats.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edmcman/experiment-scripts/HEAD/stats.Rnw --------------------------------------------------------------------------------