qdesc 0.1.8.2__tar.gz → 0.1.8.3__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.1.8.2 → qdesc-0.1.8.3}/PKG-INFO +12 -7
- {qdesc-0.1.8.2 → qdesc-0.1.8.3}/README.md +11 -6
- {qdesc-0.1.8.2 → qdesc-0.1.8.3}/qdesc.egg-info/PKG-INFO +12 -7
- {qdesc-0.1.8.2 → qdesc-0.1.8.3}/setup.py +1 -1
- {qdesc-0.1.8.2 → qdesc-0.1.8.3}/LICENCE.txt +0 -0
- {qdesc-0.1.8.2 → qdesc-0.1.8.3}/qdesc/__init__.py +0 -0
- {qdesc-0.1.8.2 → qdesc-0.1.8.3}/qdesc.egg-info/SOURCES.txt +0 -0
- {qdesc-0.1.8.2 → qdesc-0.1.8.3}/qdesc.egg-info/dependency_links.txt +0 -0
- {qdesc-0.1.8.2 → qdesc-0.1.8.3}/qdesc.egg-info/top_level.txt +0 -0
- {qdesc-0.1.8.2 → qdesc-0.1.8.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qdesc
|
|
3
|
-
Version: 0.1.8.
|
|
3
|
+
Version: 0.1.8.3
|
|
4
4
|
Summary: Quick and Easy way to do descriptive analysis.
|
|
5
5
|
Author: Paolo Hilado
|
|
6
6
|
Author-email: datasciencepgh@proton.me
|
|
@@ -62,19 +62,24 @@ create visualizations (i.e., qq-plot, histogram, and boxplots) for checking whet
|
|
|
62
62
|
pip install qdesc
|
|
63
63
|
|
|
64
64
|
## Sample use of qdesc functions
|
|
65
|
-
|
|
65
|
+
|
|
66
|
+
## Creating a sample dataframe
|
|
66
67
|
import pandas as pd
|
|
67
68
|
import numpy as np
|
|
68
|
-
|
|
69
|
+
|
|
70
|
+
## Set seed for reproducibility
|
|
69
71
|
np.random.seed(21)
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
72
|
+
|
|
73
|
+
## Create two continuous variables
|
|
74
|
+
var1 = np.random.normal(loc=0, scale=1, size=1000)
|
|
75
|
+
var2 = np.random.uniform(low=10, high=50, size=1000)
|
|
76
|
+
|
|
77
|
+
## Create DataFrame
|
|
74
78
|
df = pd.DataFrame({
|
|
75
79
|
'Normal_Variable': var1,
|
|
76
80
|
'Uniform_Variable': var2
|
|
77
81
|
})
|
|
82
|
+
|
|
78
83
|
## Using the qdesc function
|
|
79
84
|
import qdesc as qd
|
|
80
85
|
qd.desc(df)
|
|
@@ -53,19 +53,24 @@ create visualizations (i.e., qq-plot, histogram, and boxplots) for checking whet
|
|
|
53
53
|
pip install qdesc
|
|
54
54
|
|
|
55
55
|
## Sample use of qdesc functions
|
|
56
|
-
|
|
56
|
+
|
|
57
|
+
## Creating a sample dataframe
|
|
57
58
|
import pandas as pd
|
|
58
59
|
import numpy as np
|
|
59
|
-
|
|
60
|
+
|
|
61
|
+
## Set seed for reproducibility
|
|
60
62
|
np.random.seed(21)
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
63
|
+
|
|
64
|
+
## Create two continuous variables
|
|
65
|
+
var1 = np.random.normal(loc=0, scale=1, size=1000)
|
|
66
|
+
var2 = np.random.uniform(low=10, high=50, size=1000)
|
|
67
|
+
|
|
68
|
+
## Create DataFrame
|
|
65
69
|
df = pd.DataFrame({
|
|
66
70
|
'Normal_Variable': var1,
|
|
67
71
|
'Uniform_Variable': var2
|
|
68
72
|
})
|
|
73
|
+
|
|
69
74
|
## Using the qdesc function
|
|
70
75
|
import qdesc as qd
|
|
71
76
|
qd.desc(df)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qdesc
|
|
3
|
-
Version: 0.1.8.
|
|
3
|
+
Version: 0.1.8.3
|
|
4
4
|
Summary: Quick and Easy way to do descriptive analysis.
|
|
5
5
|
Author: Paolo Hilado
|
|
6
6
|
Author-email: datasciencepgh@proton.me
|
|
@@ -62,19 +62,24 @@ create visualizations (i.e., qq-plot, histogram, and boxplots) for checking whet
|
|
|
62
62
|
pip install qdesc
|
|
63
63
|
|
|
64
64
|
## Sample use of qdesc functions
|
|
65
|
-
|
|
65
|
+
|
|
66
|
+
## Creating a sample dataframe
|
|
66
67
|
import pandas as pd
|
|
67
68
|
import numpy as np
|
|
68
|
-
|
|
69
|
+
|
|
70
|
+
## Set seed for reproducibility
|
|
69
71
|
np.random.seed(21)
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
72
|
+
|
|
73
|
+
## Create two continuous variables
|
|
74
|
+
var1 = np.random.normal(loc=0, scale=1, size=1000)
|
|
75
|
+
var2 = np.random.uniform(low=10, high=50, size=1000)
|
|
76
|
+
|
|
77
|
+
## Create DataFrame
|
|
74
78
|
df = pd.DataFrame({
|
|
75
79
|
'Normal_Variable': var1,
|
|
76
80
|
'Uniform_Variable': var2
|
|
77
81
|
})
|
|
82
|
+
|
|
78
83
|
## Using the qdesc function
|
|
79
84
|
import qdesc as qd
|
|
80
85
|
qd.desc(df)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|