qdesc 0.0.5__tar.gz → 0.0.6__tar.gz
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 → qdesc-0.0.6}/PKG-INFO +4 -1
- {qdesc-0.0.5 → qdesc-0.0.6}/qdesc.egg-info/PKG-INFO +4 -1
- {qdesc-0.0.5 → qdesc-0.0.6}/setup.py +2 -1
- {qdesc-0.0.5 → qdesc-0.0.6}/LICENCE.txt +0 -0
- {qdesc-0.0.5 → qdesc-0.0.6}/README.txt +0 -0
- {qdesc-0.0.5 → qdesc-0.0.6}/qdesc.egg-info/SOURCES.txt +0 -0
- {qdesc-0.0.5 → qdesc-0.0.6}/qdesc.egg-info/dependency_links.txt +0 -0
- {qdesc-0.0.5 → qdesc-0.0.6}/qdesc.egg-info/top_level.txt +0 -0
- {qdesc-0.0.5 → qdesc-0.0.6}/setup.cfg +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qdesc
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
|
+
Summary: Quick and Easy way to do descriptive analysis.
|
|
4
5
|
Author: Paolo Hilado
|
|
5
6
|
Author-email: datasciencepgh@proton.me
|
|
6
7
|
Description-Content-Type: text/markdown
|
|
@@ -28,3 +29,5 @@ Run the function qd.desc(df) to get the following statistics:
|
|
|
28
29
|
* AD_stat - Anderson - Darling Statistic
|
|
29
30
|
* 5% crit_value - critical value for a 5% Significance Level
|
|
30
31
|
* 1% crit_value - critical value for a 1% Significance Level
|
|
32
|
+
|
|
33
|
+
Later versions will include data visualizations handy for exploring the distribution of the data set.
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qdesc
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
|
+
Summary: Quick and Easy way to do descriptive analysis.
|
|
4
5
|
Author: Paolo Hilado
|
|
5
6
|
Author-email: datasciencepgh@proton.me
|
|
6
7
|
Description-Content-Type: text/markdown
|
|
@@ -28,3 +29,5 @@ Run the function qd.desc(df) to get the following statistics:
|
|
|
28
29
|
* AD_stat - Anderson - Darling Statistic
|
|
29
30
|
* 5% crit_value - critical value for a 5% Significance Level
|
|
30
31
|
* 1% crit_value - critical value for a 1% Significance Level
|
|
32
|
+
|
|
33
|
+
Later versions will include data visualizations handy for exploring the distribution of the data set.
|
|
@@ -7,13 +7,14 @@ long_description = (this_directory / "README.md").read_text()
|
|
|
7
7
|
|
|
8
8
|
setup(
|
|
9
9
|
name='qdesc',
|
|
10
|
-
version='0.0.
|
|
10
|
+
version='0.0.6',
|
|
11
11
|
packages=find_packages(),
|
|
12
12
|
install_requires=[
|
|
13
13
|
# List your dependencies here, e.g., pandas if your function requires it
|
|
14
14
|
],
|
|
15
15
|
author='Paolo Hilado',
|
|
16
16
|
author_email='datasciencepgh@proton.me',
|
|
17
|
+
description= 'Quick and Easy way to do descriptive analysis.',
|
|
17
18
|
long_description=long_description,
|
|
18
19
|
long_description_content_type='text/markdown', # or 'text/x-rst' for reStructuredText # other metadata fields... )
|
|
19
20
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|