qdesc 0.0.9__tar.gz → 0.1.1__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qdesc
3
- Version: 0.0.9
3
+ Version: 0.1.1
4
4
  Summary: Quick and Easy way to do descriptive analysis.
5
5
  Author: Paolo Hilado
6
6
  Author-email: datasciencepgh@proton.me
@@ -33,6 +33,11 @@ Run the function qd.desc(df) to get the following statistics:
33
33
  * 5% crit_value - critical value for a 5% Significance Level
34
34
  * 1% crit_value - critical value for a 1% Significance Level
35
35
 
36
+ Run the function qd.freqdist(df, "Variable Name") to easily create a frequency distribution for your chosen categorical variable with the following:
37
+ * Variable Levels (i.e., for Sex Variable: Male and Female)
38
+ * Counts - the number of observations
39
+ * Percentage - percentage of observations from total.
40
+
36
41
  Later versions will include data visualizations handy for exploring the distribution of the data set.
37
42
 
38
43
  ## Installation
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qdesc
3
- Version: 0.0.9
3
+ Version: 0.1.1
4
4
  Summary: Quick and Easy way to do descriptive analysis.
5
5
  Author: Paolo Hilado
6
6
  Author-email: datasciencepgh@proton.me
@@ -33,6 +33,11 @@ Run the function qd.desc(df) to get the following statistics:
33
33
  * 5% crit_value - critical value for a 5% Significance Level
34
34
  * 1% crit_value - critical value for a 1% Significance Level
35
35
 
36
+ Run the function qd.freqdist(df, "Variable Name") to easily create a frequency distribution for your chosen categorical variable with the following:
37
+ * Variable Levels (i.e., for Sex Variable: Male and Female)
38
+ * Counts - the number of observations
39
+ * Percentage - percentage of observations from total.
40
+
36
41
  Later versions will include data visualizations handy for exploring the distribution of the data set.
37
42
 
38
43
  ## Installation
@@ -7,7 +7,7 @@ long_description = (this_directory / "README.md").read_text()
7
7
 
8
8
  setup(
9
9
  name='qdesc',
10
- version='0.0.9',
10
+ version='0.1.1',
11
11
  packages=find_packages(),
12
12
  install_requires=[
13
13
  # List your dependencies here, e.g., pandas if your function requires it
File without changes
File without changes
File without changes
File without changes