Making choices from a probability distribution
Project description
The PDist is designed to make it easy to make it easy to make things happen in a probablistic manner. Provide keys with an associated probability attached, and then call the resulting object when you need a new value.
>>> mood = PDist({'happy': 0.3, 'neutral': 0.6, 'sad': 0.1}) >>> mood() 'happy' >>> mood() 'neutral'
You can retrieve the distribution of how those values are applied by accessing the PDist.distribution attribute:
>>> mood.distribution [('happy', 0.3), ('neutral', 0.6), ('sad', 0.1)]
As well as providing a dict to assign probabilities, you can send in a list of lists/tuples. This allows for for non-hashable types to be used. This means that you provide objects such as functions to be used as keys:
>>> def grumpy(news): ... return ':/' >>> def happy(news): ... return ':)' >>> react = PDist([(grumpy, 0.7), (happy, 0.3)]) >>> reaction = react() >>> reaction("We're getting married!") ':/'
You are not restricted to adding your input variables up to 1. For example, if you only have a tally chart, and wish to calculate a probability distribution from that sample, you can provide that too:
>>> spotted = {'geese': 0, 'ducks': 12, 'sparrows': 4, 'other': 39} >>> bird_pdist = PDist(spotted) >>> bird_pdist.distribution [('geese', 0.0), ('sparrows', 0.07272727272727272), ('ducks', 0.21818181818181817), ('other', 0.7090909090909091)]
Retrieving the probability of a particular key is supported. However, the search strategy is very inefficient and probably shouldn’t be used outside of the interactive Python shell.
>>> bird_pdist['geese'] 0.0
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
File details
Details for the file choices-0.1.tar.gz
.
File metadata
- Download URL: choices-0.1.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae673699f949b8e095c59a0a131b12abc59d409f22e2fb88de6bb15aab01fe7e |
|
MD5 | ffe50023f36f032d9abf769f9a93453c |
|
BLAKE2b-256 | 21491ed382aec6fb4854fdd33e45489a190ffcbd056ca2a494a7aead85edced7 |