Skip to main content

A python tool to calculate the Benford´s Law from a dataset or image

Project description

A Python package to apply the Benford´s Law analysis

Project Motivation

As part of the Udacity Data Science nanodegree this is a project to create and deploy a Python package, based on this I decided to use the Benford´s Law to create a package using OOP than can apply the analyzis to a dataset, an imgae or a numpy array of numbers.

Installation:

pip intall benford_law

This package uses these libraries

  • pandas
  • numpy
  • matplotlib

The python version used: 3.8

Files in the repository

  • README.md : This file
  • setup.py : Setup file for the package
  • .gitignore : File to ignore files and not load to the GitHub repository
  • LICENSE : The MIT License
  • benford_law
    • bendord_law.py : The Benford Class
    • init.py : Inititalization file for the package
  • tests
    • tests.py : Script for unit tests of the Benford Class
    • Benford_plot_test.ipynb : Jupyter Notebook to test the graphs plotting ot the Benford Class
    • flower.jpg : JPG image to test the Benford Class
    • population.csv : CSV dataset with the Wordl Population to test the Benford Class

How To use the package

  1. Create an instace with the Benford Class

    • benford = Benford()
  2. Load a dataset or an image ,

    • bendford.load_dataset(dataset_name)
    • benford.load_image(image_name)
  3. Do the benford analysis using the benford_analysis method

    • benford.benford_analysis()
  4. Graph or plot the results using plot() method

    • benford.plot()
  5. Save the results using expor_to_csv() method:

    • benford.export_to_csv(filename)

Example using the pakage to analyze an image:

#Import libraries
import pandas as pd
import numpy as np
from benford_law import Benford
import matplotlib.pyplot as plt
from PIL import Image


image_file = 'flower.jpg'      #Read image
image = Benford()              #Create Benford instance
image.load_image(image_file)   #Load image
image.benford_analysis()       #Do Analysis
image.plot()                   #Plot Benford´s analysis

Example

Terms of use:

This is a tool to do an initial analyzis using Benford´s Law and plot how the digit´s probability are distributed on different datasets, it is not a formal analysis or study using the Benford´s Law

License:

The code follows this license: https://opensource.org/licenses/MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

benford_law-0.1.2.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

benford_law-0.1.2-py3-none-any.whl (5.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page