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
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 big_data_normality-0.2.0.tar.gz.
File metadata
- Download URL: big_data_normality-0.2.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34d3367243bfd98372dc03abd76cd1c68f91ba24d231ec84dfe005d0f236935f
|
|
| MD5 |
03755338264a5d167cab8873e870b711
|
|
| BLAKE2b-256 |
d7bd747c6d25abfc69a5e0d24504a37fb90d4cbffef4961b882b05869c432d03
|
File details
Details for the file big_data_normality-0.2.0-py3-none-any.whl.
File metadata
- Download URL: big_data_normality-0.2.0-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fecbb5e9118462f6fe0dc5219b82bb8b9c8b02240cd96ca7dbc56b41efe8257
|
|
| MD5 |
ec8f80aab5971dff31da03b25d640b81
|
|
| BLAKE2b-256 |
e605d3ccacee230a5b210692337466a3eebd3fb78f0b2a7c9ad72d27f8c47c22
|