├── .gitignore ├── LICENSE ├── README.md ├── distributions.py ├── example_modelfit.ipynb ├── example_modelfit.py ├── looking_at_ops.ipynb ├── ops.py ├── ord.py ├── scratch ├── multimember_multilevel.Rmd └── multimember_multilevel.html ├── sprun.py ├── stan ├── betterblocks.geojson ├── error.stan ├── lag.stan ├── multimember.stan └── stan_setup.py └── untitled.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/README.md -------------------------------------------------------------------------------- /distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/distributions.py -------------------------------------------------------------------------------- /example_modelfit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/example_modelfit.ipynb -------------------------------------------------------------------------------- /example_modelfit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/example_modelfit.py -------------------------------------------------------------------------------- /looking_at_ops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/looking_at_ops.ipynb -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/ops.py -------------------------------------------------------------------------------- /ord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/ord.py -------------------------------------------------------------------------------- /scratch/multimember_multilevel.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/scratch/multimember_multilevel.Rmd -------------------------------------------------------------------------------- /scratch/multimember_multilevel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/scratch/multimember_multilevel.html -------------------------------------------------------------------------------- /sprun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/sprun.py -------------------------------------------------------------------------------- /stan/betterblocks.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/stan/betterblocks.geojson -------------------------------------------------------------------------------- /stan/error.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/stan/error.stan -------------------------------------------------------------------------------- /stan/lag.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/stan/lag.stan -------------------------------------------------------------------------------- /stan/multimember.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/stan/multimember.stan -------------------------------------------------------------------------------- /stan/stan_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/stan/stan_setup.py -------------------------------------------------------------------------------- /untitled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljwolf/bayespatial/HEAD/untitled.txt --------------------------------------------------------------------------------