A package for conducting Comparative Judgement
Project description
Comparative Judgement
A package for comparative judgement (CJ).
Installation
Dependencies
comparative-judgement requires:
- Python (>= |PythonMinVersion|)
- NumPy (>= |NumPyMinVersion|)
- SciPy (>= |SciPyMinVersion|)
- Ray
User installation
If you already have a working installation of NumPy and SciPy,
the easiest way to install comparative_judgement is using pip::
pip install comparative-judgement
conda install -c conda-forge comparative-judgement
Bayesian CJ
Importing the BCJ model and initiating a instance of the model with 4 samples:
from cj.models import BayesianCJ
BCJ = BayesianCJ(4)
Creating the data:
import numpy as np
data = np.asarray([
[0, 1, 0],
[0, 1, 0],
[0, 3, 0],
[1, 0, 1],
[1, 0, 1],
[1, 0, 1],
[1, 2, 1],
[1, 2, 1],
[1, 2, 1],
[1, 2, 1],
[1, 2, 1],
[2, 1, 2],
[2, 1, 2],
[2, 1, 2],
[2, 3, 2],
[3, 0, 3],
[3, 0, 3],
[3, 0, 3],
[3, 0, 3],
[3, 2, 3],
[3, 2, 3],
[3, 2, 3],
])
running the model:
BCJ.run(data)
Finding the $\mathbb{E}[\mathbf{r}]$
BCJ.Er_scores
>>> [3.046875, 2.09765625, 3.05859375, 1.796875]
Finding the BCJ rank:
BCJ.rank
>>> array([3, 1, 0, 2])
Traditional BTM CJ
Importing the BTM Model a instance of the model with 4 samples:
from cj.models import BTMCJ
BTM = BTMCJ(4)
running the model:
BTM.run(data)
Finding the optimised p scores:
BTM.optimal_params
>>> array([-0.44654627, 0.04240265, -0.41580243, 0.81994508])
find BTM rank:
BTM.rank
>>> array([3, 1, 2, 0])
Citing this Library:
@misc{comparative_judgement,
author = {Andy Gray},
title = {Comparative Judgement},
year = {2024},
publisher = {Python Package Index (PyPI)},
howpublished = {\url{https://pypi.org/project/comparative-judgement/}}
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file comparative_judgement-0.0.5-py3-none-any.whl.
File metadata
- Download URL: comparative_judgement-0.0.5-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aac47a41f3bb7ec9a4390950c869c3adc5f178c6fd27362682502006f4d1c5ce
|
|
| MD5 |
903987e0de89e707416ada9627015c25
|
|
| BLAKE2b-256 |
2c9f1d642cccbe37777b8aa1fff8542a5941881c85435e76c4fc2f0465c2956a
|