benfordslaw is to test if an empirical (observed) distribution differs significantly from a theoretical (expected, Benfords) distribution.
Project description
benfordslaw
-
benfordslawis Python package to test if an empirical (observed) distribution differs significantly from a theoretical (expected, Benfords) distribution. The law states that in many naturally occurring collections of numbers, the leading significant digit is likely to be small. This method can be used if you want to test whether your set of numbers may be artificial (or manipulated). If a certain set of values follows Benford's Law then model's for the corresponding predicted values should also follow Benford's Law. Normal data (Unmanipulated) does trend with Benford's Law, whereas Manipulated or fraudulent data does not. -
Assumptions of the data:
- The numbers need to be random and not assigned, with no imposed minimums or maximums.
- The numbers should cover several orders of magnitude
- Dataset should preferably cover at least 1000 samples. Though Benford's law has been shown to hold true for datasets containing as few as 50 numbers.
Installation
- Install
benfordslawfrom PyPI (recommended). benfordslaw is compatible with Python 3.6+ and runs on Linux, MacOS X and Windows. - It is distributed under the MIT license.
Installation
pip install benfordslaw
- Alternatively, install benfordslaw from the GitHub source:
git clone https://github.com/erdogant/benfordslaw.git
cd benfordslaw
pip install -U .
Import benfordslaw package
from benfordslaw import benfordslaw # Initialize bl = benfordslaw(alpha=0.05) # Load elections example df = bl.import_example(data='USA') # Extract election information. X = df['votes'].loc[df['candidate']=='Donald Trump'].values # Print print(X) # array([ 5387, 23618, 1710, ..., 16, 21, 0], dtype=int64) # Make fit results = bl.fit(X) # Plot bl.plot(title='Donald Trump')
Citation
Please cite benfordslaw in your publications if this is useful for your research. Here is an example BibTeX entry:
@misc{erdogant2020benfordslaw, title={benfordslaw}, author={Erdogan Taskesen}, year={2019}, howpublished={\url{https://github.com/erdogant/benfordslaw}}, }
References
- https://en.wikipedia.org/wiki/Benford%27s_law
- https://towardsdatascience.com/frawd-detection-using-benfords-law-python-code-9db8db474cf8
Maintainer
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
| Filename, size | File type | Python version | Upload date | Hashes |
|---|---|---|---|---|
| Filename, size benfordslaw-1.0.2-py3-none-any.whl (9.2 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
| Filename, size benfordslaw-1.0.2.tar.gz (7.3 kB) | File type Source | Python version None | Upload date | Hashes View |
Hashes for benfordslaw-1.0.2-py3-none-any.whl
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 | 934a27a611b02b1942dca7cebcb2a96cce631fe1a059a57bd51ff8bd54633ce3 |
|
| MD5 | 5c88ed6d73edad97459b742187f21122 |
|
| BLAKE2-256 | 3c9ef53970f4a95f12affc45f24bc5f5b3df3062b6e0712042c70c2ff5c87555 |