├── Plot.png ├── README.md ├── data ├── votes.Rda └── votes_data.Rda ├── models └── Stan │ ├── 1d_hierarchical.stan │ ├── 1d_model.stan │ ├── 2d_model.stan │ └── dynamic_model.stan ├── plots └── plot_stan.R ├── saved_runs └── 1d_model_stan.Rda └── scripts ├── 1d_hierarchical_model_Stan.R ├── 1d_model_Stan.R ├── 2Dmodel_Stan.R ├── Dynamic_model.R └── create_data.R /Plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/Plot.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/README.md -------------------------------------------------------------------------------- /data/votes.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/data/votes.Rda -------------------------------------------------------------------------------- /data/votes_data.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/data/votes_data.Rda -------------------------------------------------------------------------------- /models/Stan/1d_hierarchical.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/models/Stan/1d_hierarchical.stan -------------------------------------------------------------------------------- /models/Stan/1d_model.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/models/Stan/1d_model.stan -------------------------------------------------------------------------------- /models/Stan/2d_model.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/models/Stan/2d_model.stan -------------------------------------------------------------------------------- /models/Stan/dynamic_model.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/models/Stan/dynamic_model.stan -------------------------------------------------------------------------------- /plots/plot_stan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/plots/plot_stan.R -------------------------------------------------------------------------------- /saved_runs/1d_model_stan.Rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/saved_runs/1d_model_stan.Rda -------------------------------------------------------------------------------- /scripts/1d_hierarchical_model_Stan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/scripts/1d_hierarchical_model_Stan.R -------------------------------------------------------------------------------- /scripts/1d_model_Stan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/scripts/1d_model_Stan.R -------------------------------------------------------------------------------- /scripts/2Dmodel_Stan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/scripts/2Dmodel_Stan.R -------------------------------------------------------------------------------- /scripts/Dynamic_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/scripts/Dynamic_model.R -------------------------------------------------------------------------------- /scripts/create_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertMyles/IRT/HEAD/scripts/create_data.R --------------------------------------------------------------------------------