Skip to main content

Normality Test for Big Data

Project description

Empirical Normality Test

A normality test based on empirical rule for big data

Installation

pip install big-data-normality

Get started

How to get normality test for dataset with this lib:

# Library import
from big_data_normality.empirical_normality_test import EmpiricalNormalityTest
# Graph output
from big_data_normality.empirical_normality_test import EmpiricalNormalityTestGraph


# This line of code will allow shorter imports
from big_data_normality import EmpiricalNormalityTest
# Graph output
from big_data_normality import EmpiricalNormalityTestGraph

# Instantiate a EmpiricalNormalityTest object
"""Firstly, import the excel file, then run the library
P.S. Excel file must include name of each column. Like that;

name1	name2	name3	name4 ...
73,36	72,64	68,45	66,52 ...
78,97	67,04	60,85	70,96 ...
...     ...     ...     ...   ...

"""

import os
import pandas as pd

path = r'C:\data'
os.chdir(path)
df = pd.read_excel("my_dataset.xlsx")
# Test output
print(EmpiricalNormalityTest(df))
# Graph output
print(EmpiricalNormalityTestGraph(df))

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

big-data-normality-0.1.6.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

big_data_normality-0.1.6-py3-none-any.whl (5.9 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