qdesc 0.0.3__py3-none-any.whl → 0.0.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of qdesc might be problematic. Click here for more details.
- qdesc-0.0.5.dist-info/METADATA +30 -0
- qdesc-0.0.5.dist-info/RECORD +5 -0
- qdesc-0.0.3.dist-info/METADATA +0 -9
- qdesc-0.0.3.dist-info/RECORD +0 -5
- {qdesc-0.0.3.dist-info → qdesc-0.0.5.dist-info}/LICENCE.txt +0 -0
- {qdesc-0.0.3.dist-info → qdesc-0.0.5.dist-info}/WHEEL +0 -0
- {qdesc-0.0.3.dist-info → qdesc-0.0.5.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: qdesc
|
|
3
|
+
Version: 0.0.5
|
|
4
|
+
Author: Paolo Hilado
|
|
5
|
+
Author-email: datasciencepgh@proton.me
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
License-File: LICENCE.txt
|
|
8
|
+
|
|
9
|
+
This is a package for quick and easy descriptive analysis.
|
|
10
|
+
Required packages include: pandas, numpy, and SciPy version 1.14.1
|
|
11
|
+
Be sure to run the following prior to using the "qd.desc" function:
|
|
12
|
+
|
|
13
|
+
- import pandas as pd
|
|
14
|
+
- import numpy as np
|
|
15
|
+
- from scipy.stats import anderson
|
|
16
|
+
- import qdesc as qd
|
|
17
|
+
|
|
18
|
+
The qdesc package provides a quick and easy approach to do descriptive analysis for quantitative data.
|
|
19
|
+
|
|
20
|
+
Run the function qd.desc(df) to get the following statistics:
|
|
21
|
+
* count - number of observations
|
|
22
|
+
* mean - measure of central tendency for normal distribution
|
|
23
|
+
* std - measure of spread for normal distribution
|
|
24
|
+
* median - measure of central tendency for skewed distributions or those with outliers
|
|
25
|
+
* MAD - measure of spread for skewed distributions or those with outliers; this is manual Median Absolute Deviation (MAD) which is more robust when dealing with non-normal distributions.
|
|
26
|
+
* min - lowest observed value
|
|
27
|
+
* max - highest observed value
|
|
28
|
+
* AD_stat - Anderson - Darling Statistic
|
|
29
|
+
* 5% crit_value - critical value for a 5% Significance Level
|
|
30
|
+
* 1% crit_value - critical value for a 1% Significance Level
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
qdesc-0.0.5.dist-info/LICENCE.txt,sha256=xdFo-Rt6I7EP7C_qrVeIBIcH_7mRGUh8sciJs2R8VmY,9684
|
|
2
|
+
qdesc-0.0.5.dist-info/METADATA,sha256=SnT9Lt6BJEIW2HUU3cxt27vplOhZRv0HADK7upY2coI,1312
|
|
3
|
+
qdesc-0.0.5.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
4
|
+
qdesc-0.0.5.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
5
|
+
qdesc-0.0.5.dist-info/RECORD,,
|
qdesc-0.0.3.dist-info/METADATA
DELETED
qdesc-0.0.3.dist-info/RECORD
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
qdesc-0.0.3.dist-info/LICENCE.txt,sha256=xdFo-Rt6I7EP7C_qrVeIBIcH_7mRGUh8sciJs2R8VmY,9684
|
|
2
|
-
qdesc-0.0.3.dist-info/METADATA,sha256=QGpetX1O-uA3b2lkNzKH-stKmu56t8GgRSBm49mCtUA,196
|
|
3
|
-
qdesc-0.0.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
4
|
-
qdesc-0.0.3.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
5
|
-
qdesc-0.0.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|