eda-toolkit 0.0.1a0__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.
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 [Leonid Shpaner, Oscar Gil]
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: eda_toolkit
|
|
3
|
+
Version: 0.0.1a0
|
|
4
|
+
Summary: A Python library for EDA (directory management, some data preprocessing, reporting, visualizations, and more)
|
|
5
|
+
Author: Leonid Shpaner, Oscar Gil
|
|
6
|
+
Author-email: lshpaner@ucla.edu
|
|
7
|
+
Project-URL: Leonid Shpaner Website, https://www.leonshpaner.com
|
|
8
|
+
Project-URL: Oscar Gil Website, https://www.oscargildata.com
|
|
9
|
+
Project-URL: Source Code, https://github.com/lshpaner/eda_kit/
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.6
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE.md
|
|
16
|
+
Requires-Dist: jinja2 >=3.1.4
|
|
17
|
+
Requires-Dist: numpy >=1.21.6
|
|
18
|
+
Requires-Dist: pandas >=1.3.5
|
|
19
|
+
Requires-Dist: matplotlib >=3.5.3
|
|
20
|
+
Requires-Dist: seaborn >=0.12.2
|
|
21
|
+
Requires-Dist: xlsxwriter >=3.2.0
|
|
22
|
+
|
|
23
|
+
# EDA Kit
|
|
24
|
+
|
|
25
|
+
Welcome to EDA Kit, a collection of utility functions designed to streamline your exploratory data analysis (EDA) tasks. This repository offers tools for directory management, data preprocessing, reporting, visualization, and more, helping you efficiently handle various aspects of data manipulation and analysis.
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## Prerequisites
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
Before you install `eda_kit`, ensure your system meets the following requirements:
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
- `Python`: Version `3.7.4` or higher is required to run `eda_kit`.
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
Additionally, `eda_kit` depends on the following packages, which will be automatically installed when you install `eda_kit`:
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
- `numpy`: Version 1.21.6 or higher
|
|
50
|
+
|
|
51
|
+
- `pandas`: Version 1.3.5 or higher
|
|
52
|
+
|
|
53
|
+
- `matplotlib`: version 3.5.3 or higher
|
|
54
|
+
|
|
55
|
+
- `seaborn`: version 0.12.2 or higher
|
|
56
|
+
|
|
57
|
+
- `jinja2`: Version 3.1.4 or higher
|
|
58
|
+
|
|
59
|
+
- `xlsxwriter`: version 3.2.0 or higher
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
## Installation
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
You can install `eda_kit` directly from PyPI:
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
|
|
75
|
+
pip install eda_kit
|
|
76
|
+
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
## 🌐 Authors' Websites
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
https://www.leonshpaner.com
|
|
86
|
+
|
|
87
|
+
https://www.oscargildata.com
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
## ⚖️ License
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
`eda_kit` is distributed under the MIT License. See [LICENSE](https://github.com/lshpaner/eda_kit/blob/readme/LICENSE.md) for more information.
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
## Support
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
If you have any questions or issues with `eda_kit`, please open an issue on this GitHub repository.
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
eda_toolkit-0.0.1a0.dist-info/LICENSE.md,sha256=b4PkmOYtMGdShhVFaguo2c00Vqu44M3IF5L8TYHpLCA,1103
|
|
2
|
+
eda_toolkit-0.0.1a0.dist-info/METADATA,sha256=Vi3I_A5BZlvso6m4gpnBNCwkrMbuK_Ik1jIyEOH_dPA,2338
|
|
3
|
+
eda_toolkit-0.0.1a0.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
|
4
|
+
eda_toolkit-0.0.1a0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
5
|
+
eda_toolkit-0.0.1a0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|