qdesc 0.1.8__py3-none-any.whl → 0.1.8.1__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qdesc
3
- Version: 0.1.8
3
+ Version: 0.1.8.1
4
4
  Summary: Quick and Easy way to do descriptive analysis.
5
5
  Author: Paolo Hilado
6
6
  Author-email: datasciencepgh@proton.me
@@ -53,15 +53,36 @@ Run the function qd.freqdist_to_excel(df, "Name of file.xlsx", ascending = FALSE
53
53
  * Counts - the number of observations
54
54
  * Percentage - percentage of observations from total.
55
55
 
56
+ ## qd.normcheck_dashboard Function
57
+ Run the function qd.normcheck_dashboard(df) to efficiently check each numeric variable for normality of its distribution. It will compute the Anderson-Darling statistic and
58
+ create visualizations (i.e., qq-plot, histogram, and boxplots) for checking whether the distribution is approximately normal.
59
+
56
60
 
57
61
  Later versions will include data visualizations handy for exploring the distribution of the data set.
58
62
 
59
63
  ## Installation
60
64
  pip install qdesc
61
65
 
62
- ## Usage - doing descriptive analysis using qdesc
63
- ### import qdesc as qd
64
- ### qd.desc(df)
66
+ ## Sample use of qdesc functions
67
+ # Creating a sample dataframe
68
+ import pandas as pd
69
+ import numpy as np
70
+
71
+ # Set seed for reproducibility
72
+ np.random.seed(21)
73
+
74
+ # Create two continuous variables
75
+ var1 = np.random.normal(loc=0, scale=1, size=1000) # Normal distribution
76
+ var2 = np.random.uniform(low=10, high=50, size=1000) # Uniform distribution
77
+
78
+ # Create DataFrame
79
+ df = pd.DataFrame({
80
+ 'Normal_Variable': var1,
81
+ 'Uniform_Variable': var2
82
+ })
83
+ # Using the qdesc function
84
+ import qdesc as qd
85
+ qd.desc(df)
65
86
 
66
87
  ## License
67
88
  This project is licensed under the GPL-3 License. See the LICENSE file for more details.
@@ -0,0 +1,6 @@
1
+ qdesc/__init__.py,sha256=YtYahB-neaYOG3DvVXweSuFExqVZFNR0lAivaPp9_SA,6599
2
+ qdesc-0.1.8.1.dist-info/LICENCE.txt,sha256=xdFo-Rt6I7EP7C_qrVeIBIcH_7mRGUh8sciJs2R8VmY,9684
3
+ qdesc-0.1.8.1.dist-info/METADATA,sha256=qXseXkIM1Ynrx9kralmBs9B1jtpnwb8-kHUKVMLjk9Y,4552
4
+ qdesc-0.1.8.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
5
+ qdesc-0.1.8.1.dist-info/top_level.txt,sha256=JuSs1wWRGN77DVuq-SX-5P7m_mIZF0ikEVgPTBOrHb0,6
6
+ qdesc-0.1.8.1.dist-info/RECORD,,
@@ -1,6 +0,0 @@
1
- qdesc/__init__.py,sha256=YtYahB-neaYOG3DvVXweSuFExqVZFNR0lAivaPp9_SA,6599
2
- qdesc-0.1.8.dist-info/LICENCE.txt,sha256=xdFo-Rt6I7EP7C_qrVeIBIcH_7mRGUh8sciJs2R8VmY,9684
3
- qdesc-0.1.8.dist-info/METADATA,sha256=k7IeXnqHYiaoz999aax8qWGlOD2khStdVVSRrRzFmsc,3780
4
- qdesc-0.1.8.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
5
- qdesc-0.1.8.dist-info/top_level.txt,sha256=JuSs1wWRGN77DVuq-SX-5P7m_mIZF0ikEVgPTBOrHb0,6
6
- qdesc-0.1.8.dist-info/RECORD,,
File without changes