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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qdesc
3
- Version: 0.1.8.2
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
- ###Creating a sample dataframe
65
+
66
+ ## Creating a sample dataframe
66
67
  import pandas as pd
67
68
  import numpy as np
68
- ### Set seed for reproducibility
69
+
70
+ ## Set seed for reproducibility
69
71
  np.random.seed(21)
70
- ### Create two continuous variables
71
- var1 = np.random.normal(loc=0, scale=1, size=1000) # Normal distribution
72
- var2 = np.random.uniform(low=10, high=50, size=1000) # Uniform distribution
73
- ### Create DataFrame
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
- ###Creating a sample dataframe
56
+
57
+ ## Creating a sample dataframe
57
58
  import pandas as pd
58
59
  import numpy as np
59
- ### Set seed for reproducibility
60
+
61
+ ## Set seed for reproducibility
60
62
  np.random.seed(21)
61
- ### Create two continuous variables
62
- var1 = np.random.normal(loc=0, scale=1, size=1000) # Normal distribution
63
- var2 = np.random.uniform(low=10, high=50, size=1000) # Uniform distribution
64
- ### Create DataFrame
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.2
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
- ###Creating a sample dataframe
65
+
66
+ ## Creating a sample dataframe
66
67
  import pandas as pd
67
68
  import numpy as np
68
- ### Set seed for reproducibility
69
+
70
+ ## Set seed for reproducibility
69
71
  np.random.seed(21)
70
- ### Create two continuous variables
71
- var1 = np.random.normal(loc=0, scale=1, size=1000) # Normal distribution
72
- var2 = np.random.uniform(low=10, high=50, size=1000) # Uniform distribution
73
- ### Create DataFrame
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)
@@ -7,7 +7,7 @@ long_description = (this_directory / "README.md").read_text()
7
7
 
8
8
  setup(
9
9
  name='qdesc',
10
- version='0.1.8.2',
10
+ version='0.1.8.3',
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