A PyPI package to model risky choice
Project description
A python package for binary risky choice modeling for 4 models:
- Expected Utility Theory: $U = p*A^\alpha$
- Risk-Return: $U = EV - b*Var$
- Coefficient of Variation: $U = EV - b*CV$ where $CV = \sqrt{Var}/EV1$
- Hyperbolic: $U = A/(1+h*\theta)$ where $\theta = (1-p)/p$
where $A$ is the payoff amount, $p$ is the probability of winning that outcome, $EV$ is Expected value ($Ap$), and $Var$ is variance ($p(A-EV)^2 + (1 - p)(-EV)^2$)
The package takes risky choice data (probability, payoffs, and decisions) of 2 options as inputs, fits a model to the data, and returns a util-rc object that stores the estimated parameter, inverse temperature, fit metrics, model type, and number of observations in an instance variable named output.
Warnings will be issued if all choices in the input data are one-sided (all 0 or 1), or if the fitted model predicts all one-sided choices.
To install and import the package, copy the following code into your terminal:
>>> pip install util-rc==0.2.7
>>> from util_rc import util_rc
To construct a util_rc object, use the following format:
>>> example = util_rc("E",[0,0,1],[10,10,10],[1,1,1],[20,30,40],[.6,.5,.4])
To obtain fitted parameters, view the params instance variable:
>>> example.output
[[0.7369655941662062, 1.7920653725324747], 'SLSQP', 'Expected Utility Theory', 3]
To view additional information about the class, use python's help function (with package installed):
>>> help(util_rc)
class util_rc(builtins.object)
| util_rc(modeltype, choice, amt1, prob1, amt2, prob2)
|
| Args:
| :param modeltype: a string describing the model to fit data:
| "E" for expected utility where U = p * A^alpha
| "R" for risk-return where U = EV - b * Var
| "W" for weber where U = EV - b *CV and CV = sqrt(Var)/EV1
| "H" for hyperbolic where U = A/(1+h*theta) and theta = (1-p)/p
| :param choice: an array-like of size n containing only the values 1 and 0, where 1 represents choosing option 1 and 0 represents option2
| :param amt1: an array-like of size n containing non-negative numbers, where each value represents the payoffs for option 1
| :param prob1: an array-like of size n containing non-negative number between 0 and 1, where each value represents the probability of winning amt1
| :param amt2: an array-like of size n containing non-negative numbers, where each value represents the payoffs for option 2
| :param prob2: an array-like of size n containing non-negative number between 0 and 1, where each value represents the probability of winning amt2
|
| Validates the inputs and fits the chosen modeltype to the binary risky choice data.
|
| Stores and outputs parameters in an instance variable named output, a python list containing:
| [fitted_param, inv_temp]: a nested list of parameters where
| fitted_param: the parameter that maximizes likelihood of choice data, which is alpha for EUT, b for Risk-Return, b for Weber, or h for Hyperbolic
| inv_temp: inverse temperature, the estimated level of randomness in choices
| fit_metrics: Sequential Least Squares Programming (SLSQP)
| modeltype: the model type the user inputted
| num_observations: the number of observations, n
|
| if all input data is one-sided, the parameter is calculated only at the min or max, and params is instead formatted as [[fitted_param], likelihood, fit_metrics, modeltype, num_observations]
To exit the help window in terminal, press q.
Dependencies: numpy version >= 1.26.4, scipy version >= 1.12.0
Contact donna.ma@berkeley.edu for any questions or concerns regarding the package.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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 util_rc-0.2.7.tar.gz.
File metadata
- Download URL: util_rc-0.2.7.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fa1ab49fd053f3b6dabcc90817261515b312ffb452ee193ac130a78d4d93dae
|
|
| MD5 |
a6e288b4abf25bc10e7b84cb58108a9c
|
|
| BLAKE2b-256 |
5dbad8c4f2ba7f2772fe3ec0ad57ba75402c68ae02234bffb7bf83055e0f9b7d
|
File details
Details for the file util_rc-0.2.7-py3-none-any.whl.
File metadata
- Download URL: util_rc-0.2.7-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92f9e632cdaf7dd8a075505392d6fa43ee5c5d8c639bfc456dc4d9184038845e
|
|
| MD5 |
8b508447f52c520d38f237eaa5817c88
|
|
| BLAKE2b-256 |
6eb473203e0d86d8142583cd934ad9849b057263a0d54cdc2b35430536d896c3
|