pyplotye 0.1.0__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.
- pyplotye-0.1.0/LICENSE +21 -0
- pyplotye-0.1.0/PKG-INFO +90 -0
- pyplotye-0.1.0/README.md +39 -0
- pyplotye-0.1.0/pyplotye/__init__.py +9 -0
- pyplotye-0.1.0/pyplotye/binning.py +35 -0
- pyplotye-0.1.0/pyplotye/core.py +9 -0
- pyplotye-0.1.0/pyplotye/demoppa.py +23 -0
- pyplotye-0.1.0/pyplotye/demotmt.py +42 -0
- pyplotye-0.1.0/pyplotye/hist.py +27 -0
- pyplotye-0.1.0/pyplotye/knndt.py +42 -0
- pyplotye-0.1.0/pyplotye/linlog.py +54 -0
- pyplotye-0.1.0/pyplotye/missingval.py +30 -0
- pyplotye-0.1.0/pyplotye/smoknn.py +0 -0
- pyplotye-0.1.0/pyplotye.egg-info/PKG-INFO +90 -0
- pyplotye-0.1.0/pyplotye.egg-info/SOURCES.txt +19 -0
- pyplotye-0.1.0/pyplotye.egg-info/dependency_links.txt +1 -0
- pyplotye-0.1.0/pyplotye.egg-info/requires.txt +12 -0
- pyplotye-0.1.0/pyplotye.egg-info/top_level.txt +1 -0
- pyplotye-0.1.0/pyproject.toml +46 -0
- pyplotye-0.1.0/setup.cfg +4 -0
- pyplotye-0.1.0/tests/test_core.py +6 -0
pyplotye-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Your Name
|
|
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.
|
pyplotye-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyplotye
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A Python data analysis and visualization toolkit for preprocessing, clustering, regression and classification.
|
|
5
|
+
Author-email: Harish <hackerat2027@gmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2026 Your Name
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Project-URL: Homepage, https://github.com/HackerHarish1419/pyplotye
|
|
29
|
+
Project-URL: Bug Tracker, https://github.com/HackerHarish1419/pyplotye/issues
|
|
30
|
+
Keywords: plotting,visualization,machine learning,data analysis,sklearn
|
|
31
|
+
Classifier: Programming Language :: Python :: 3
|
|
32
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
33
|
+
Classifier: Operating System :: OS Independent
|
|
34
|
+
Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
35
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
36
|
+
Requires-Python: >=3.8
|
|
37
|
+
Description-Content-Type: text/markdown
|
|
38
|
+
License-File: LICENSE
|
|
39
|
+
Requires-Dist: numpy>=1.21
|
|
40
|
+
Requires-Dist: pandas>=1.4
|
|
41
|
+
Requires-Dist: matplotlib>=3.5
|
|
42
|
+
Requires-Dist: scikit-learn>=1.0
|
|
43
|
+
Requires-Dist: statsmodels>=0.13
|
|
44
|
+
Requires-Dist: seaborn>=0.11
|
|
45
|
+
Requires-Dist: minisom>=2.3
|
|
46
|
+
Provides-Extra: dev
|
|
47
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
48
|
+
Requires-Dist: twine>=4.0; extra == "dev"
|
|
49
|
+
Requires-Dist: build>=0.10; extra == "dev"
|
|
50
|
+
Dynamic: license-file
|
|
51
|
+
|
|
52
|
+
# pyplotye
|
|
53
|
+
|
|
54
|
+
[](https://badge.fury.io/py/pyplotye)
|
|
55
|
+
[](https://pypi.org/project/pyplotye/)
|
|
56
|
+
[](https://opensource.org/licenses/MIT)
|
|
57
|
+
|
|
58
|
+
> A Python plotting library — describe what `pyplotye` does in one sentence here.
|
|
59
|
+
|
|
60
|
+
## Features
|
|
61
|
+
|
|
62
|
+
- Feature 1
|
|
63
|
+
- Feature 2
|
|
64
|
+
- Feature 3
|
|
65
|
+
|
|
66
|
+
## Installation
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
pip install pyplotye
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Quick Start
|
|
73
|
+
|
|
74
|
+
```python
|
|
75
|
+
from pyplotye import hello
|
|
76
|
+
|
|
77
|
+
print(hello())
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## Documentation
|
|
81
|
+
|
|
82
|
+
Full documentation is available at [https://pyplotye.readthedocs.io](https://pyplotye.readthedocs.io).
|
|
83
|
+
|
|
84
|
+
## Contributing
|
|
85
|
+
|
|
86
|
+
Contributions are welcome! Please open an issue or submit a pull request on [GitHub](https://github.com/yourusername/pyplotye).
|
|
87
|
+
|
|
88
|
+
## License
|
|
89
|
+
|
|
90
|
+
This project is licensed under the MIT License — see the [LICENSE](LICENSE) file for details.
|
pyplotye-0.1.0/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# pyplotye
|
|
2
|
+
|
|
3
|
+
[](https://badge.fury.io/py/pyplotye)
|
|
4
|
+
[](https://pypi.org/project/pyplotye/)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
|
|
7
|
+
> A Python plotting library — describe what `pyplotye` does in one sentence here.
|
|
8
|
+
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- Feature 1
|
|
12
|
+
- Feature 2
|
|
13
|
+
- Feature 3
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install pyplotye
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Quick Start
|
|
22
|
+
|
|
23
|
+
```python
|
|
24
|
+
from pyplotye import hello
|
|
25
|
+
|
|
26
|
+
print(hello())
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Documentation
|
|
30
|
+
|
|
31
|
+
Full documentation is available at [https://pyplotye.readthedocs.io](https://pyplotye.readthedocs.io).
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
Contributions are welcome! Please open an issue or submit a pull request on [GitHub](https://github.com/yourusername/pyplotye).
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
This project is licensed under the MIT License — see the [LICENSE](LICENSE) file for details.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import pandas as pd
|
|
2
|
+
import numpy as np
|
|
3
|
+
from sklearn.datasets import load_iris
|
|
4
|
+
from sklearn.preprocessing import MinMaxScaler
|
|
5
|
+
|
|
6
|
+
# Load dataset
|
|
7
|
+
iris = load_iris()
|
|
8
|
+
|
|
9
|
+
# Create DataFrame
|
|
10
|
+
df = pd.DataFrame(iris.data, columns=iris.feature_names)
|
|
11
|
+
|
|
12
|
+
# Transformation (log transform)
|
|
13
|
+
df['log_data'] = np.log(df['sepal length (cm)'])
|
|
14
|
+
|
|
15
|
+
# Scaling
|
|
16
|
+
scaler = MinMaxScaler()
|
|
17
|
+
df['scaled'] = scaler.fit_transform(
|
|
18
|
+
df[['sepal width (cm)']]
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
# Binning
|
|
22
|
+
df['binned'] = pd.cut(
|
|
23
|
+
df['petal length (cm)'],
|
|
24
|
+
bins=3,
|
|
25
|
+
labels=['Low', 'Medium', 'High']
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
# Fix skewed values
|
|
29
|
+
df['fixed_skew'] = np.sqrt(df['petal width (cm)'])
|
|
30
|
+
|
|
31
|
+
# Sampling
|
|
32
|
+
sample = df.sample(5)
|
|
33
|
+
|
|
34
|
+
# Display
|
|
35
|
+
print(sample)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
from sklearn.datasets import load_breast_cancer
|
|
2
|
+
from sklearn.model_selection import train_test_split
|
|
3
|
+
from sklearn.ensemble import RandomForestClassifier
|
|
4
|
+
from sklearn.metrics import accuracy_score
|
|
5
|
+
|
|
6
|
+
# Load microarray-like dataset
|
|
7
|
+
data = load_breast_cancer()
|
|
8
|
+
X, y = data.data, data.target
|
|
9
|
+
|
|
10
|
+
# Split data
|
|
11
|
+
X_train, X_test, y_train, y_test = train_test_split(
|
|
12
|
+
X, y, test_size=0.2, random_state=42
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
# Train model
|
|
16
|
+
model = RandomForestClassifier()
|
|
17
|
+
model.fit(X_train, y_train)
|
|
18
|
+
|
|
19
|
+
# Prediction
|
|
20
|
+
y_pred = model.predict(X_test)
|
|
21
|
+
|
|
22
|
+
# Accuracy
|
|
23
|
+
print("Accuracy:", accuracy_score(y_test, y_pred))
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import numpy as np
|
|
2
|
+
import matplotlib.pyplot as plt
|
|
3
|
+
from statsmodels.datasets import co2
|
|
4
|
+
from sklearn.linear_model import LinearRegression
|
|
5
|
+
from sklearn.model_selection import train_test_split
|
|
6
|
+
from sklearn.metrics import mean_squared_error
|
|
7
|
+
|
|
8
|
+
# Load temporal dataset
|
|
9
|
+
data = co2.load_pandas().data
|
|
10
|
+
|
|
11
|
+
# Remove missing values
|
|
12
|
+
data = data.ffill()
|
|
13
|
+
|
|
14
|
+
# Input (time) and Output (CO2 values)
|
|
15
|
+
X = np.arange(len(data)).reshape(-1, 1)
|
|
16
|
+
y = data['co2'].values
|
|
17
|
+
|
|
18
|
+
# Train-Test Split
|
|
19
|
+
X_train, X_test, y_train, y_test = train_test_split(
|
|
20
|
+
X, y, test_size=0.2, random_state=42
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
# Model Training
|
|
24
|
+
model = LinearRegression()
|
|
25
|
+
model.fit(X_train, y_train)
|
|
26
|
+
|
|
27
|
+
# Prediction
|
|
28
|
+
y_pred = model.predict(X_test)
|
|
29
|
+
|
|
30
|
+
# Error
|
|
31
|
+
print("Mean Squared Error:", mean_squared_error(y_test, y_pred))
|
|
32
|
+
|
|
33
|
+
# Comparison Graph
|
|
34
|
+
plt.scatter(X_test, y_test, label="Actual Values")
|
|
35
|
+
plt.scatter(X_test, y_pred, label="Predicted Values")
|
|
36
|
+
|
|
37
|
+
plt.title("Actual vs Predicted CO2 Values")
|
|
38
|
+
plt.xlabel("Time")
|
|
39
|
+
plt.ylabel("CO2 Levels")
|
|
40
|
+
plt.legend()
|
|
41
|
+
|
|
42
|
+
plt.show()
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import pandas as pd
|
|
2
|
+
import matplotlib.pyplot as plt
|
|
3
|
+
from sklearn.datasets import load_iris
|
|
4
|
+
|
|
5
|
+
# Load dataset
|
|
6
|
+
iris = load_iris()
|
|
7
|
+
|
|
8
|
+
# Create DataFrame
|
|
9
|
+
df = pd.DataFrame(iris.data,
|
|
10
|
+
columns=iris.feature_names)
|
|
11
|
+
|
|
12
|
+
# Dataset summary
|
|
13
|
+
print(df.describe())
|
|
14
|
+
|
|
15
|
+
# Histogram
|
|
16
|
+
df.hist(figsize=(8, 6))
|
|
17
|
+
|
|
18
|
+
# Scatter plot (multiple variables)
|
|
19
|
+
plt.figure(figsize=(6,4))
|
|
20
|
+
plt.scatter(df['sepal length (cm)'],
|
|
21
|
+
df['petal length (cm)'])
|
|
22
|
+
|
|
23
|
+
plt.xlabel("Sepal Length")
|
|
24
|
+
plt.ylabel("Petal Length")
|
|
25
|
+
plt.title("Multiple Variable Summary")
|
|
26
|
+
|
|
27
|
+
plt.show()
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
from sklearn.datasets import load_iris
|
|
2
|
+
from sklearn.model_selection import train_test_split
|
|
3
|
+
from sklearn.tree import DecisionTreeClassifier
|
|
4
|
+
from sklearn.neighbors import KNeighborsClassifier
|
|
5
|
+
from sklearn.neural_network import MLPClassifier
|
|
6
|
+
from sklearn.metrics import accuracy_score
|
|
7
|
+
|
|
8
|
+
# Load dataset
|
|
9
|
+
iris = load_iris()
|
|
10
|
+
|
|
11
|
+
X = iris.data
|
|
12
|
+
y = iris.target
|
|
13
|
+
|
|
14
|
+
# Train-Test Split
|
|
15
|
+
X_train, X_test, y_train, y_test = train_test_split(
|
|
16
|
+
X, y, test_size=0.2, random_state=42
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
# Decision Tree
|
|
20
|
+
dt = DecisionTreeClassifier()
|
|
21
|
+
dt.fit(X_train, y_train)
|
|
22
|
+
dt_pred = dt.predict(X_test)
|
|
23
|
+
|
|
24
|
+
# KNN
|
|
25
|
+
knn = KNeighborsClassifier()
|
|
26
|
+
knn.fit(X_train, y_train)
|
|
27
|
+
knn_pred = knn.predict(X_test)
|
|
28
|
+
|
|
29
|
+
# Neural Network
|
|
30
|
+
nn = MLPClassifier(max_iter=1000)
|
|
31
|
+
nn.fit(X_train, y_train)
|
|
32
|
+
nn_pred = nn.predict(X_test)
|
|
33
|
+
|
|
34
|
+
# Accuracy
|
|
35
|
+
print("Decision Tree Accuracy:",
|
|
36
|
+
accuracy_score(y_test, dt_pred))
|
|
37
|
+
|
|
38
|
+
print("KNN Accuracy:",
|
|
39
|
+
accuracy_score(y_test, knn_pred))
|
|
40
|
+
|
|
41
|
+
print("Neural Network Accuracy:",
|
|
42
|
+
accuracy_score(y_test, nn_pred))
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import matplotlib.pyplot as plt
|
|
2
|
+
from sklearn.datasets import load_diabetes
|
|
3
|
+
from sklearn.linear_model import LinearRegression
|
|
4
|
+
from sklearn.model_selection import train_test_split
|
|
5
|
+
from sklearn.metrics import mean_squared_error, r2_score
|
|
6
|
+
|
|
7
|
+
# 1. Load and Split
|
|
8
|
+
data = load_diabetes()
|
|
9
|
+
X_train, X_test, y_train, y_test = train_test_split(data.data, data.target, test_size=0.2, random_state=42)
|
|
10
|
+
|
|
11
|
+
# 2. Train Model
|
|
12
|
+
model = LinearRegression()
|
|
13
|
+
model.fit(X_train, y_train)
|
|
14
|
+
|
|
15
|
+
# 3. Predict and Evaluate
|
|
16
|
+
y_pred = model.predict(X_test)
|
|
17
|
+
print(f"Mean Squared Error: {mean_squared_error(y_test, y_pred):.2f}")
|
|
18
|
+
print(f"R2 Score: {r2_score(y_test, y_pred):.2f}")
|
|
19
|
+
|
|
20
|
+
# 4. Visualization
|
|
21
|
+
plt.scatter(y_test, y_pred, alpha=0.5)
|
|
22
|
+
plt.plot([y_test.min(), y_test.max()], [y_test.min(), y_test.max()], 'r--', lw=2) # Best fit line
|
|
23
|
+
plt.xlabel("Actual Values")
|
|
24
|
+
plt.ylabel("Predicted Values")
|
|
25
|
+
plt.title("Linear Regression: Diabetes Dataset")
|
|
26
|
+
plt.show()
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
import matplotlib.pyplot as plt
|
|
30
|
+
import seaborn as sns
|
|
31
|
+
from sklearn.datasets import load_breast_cancer
|
|
32
|
+
from sklearn.linear_model import LogisticRegression
|
|
33
|
+
from sklearn.model_selection import train_test_split
|
|
34
|
+
from sklearn.metrics import accuracy_score, confusion_matrix
|
|
35
|
+
|
|
36
|
+
# 1. Load and Split
|
|
37
|
+
data = load_breast_cancer()
|
|
38
|
+
X_train, X_test, y_train, y_test = train_test_split(data.data, data.target, test_size=0.2, random_state=42)
|
|
39
|
+
|
|
40
|
+
# 2. Train Model (max_iter ensures convergence)
|
|
41
|
+
model = LogisticRegression(max_iter=5000)
|
|
42
|
+
model.fit(X_train, y_train)
|
|
43
|
+
|
|
44
|
+
# 3. Predict and Evaluate
|
|
45
|
+
y_pred = model.predict(X_test)
|
|
46
|
+
print(f"Accuracy Score: {accuracy_score(y_test, y_pred):.2%}")
|
|
47
|
+
|
|
48
|
+
# 4. Visualization (Confusion Matrix is best for Classification)
|
|
49
|
+
cm = confusion_matrix(y_test, y_pred)
|
|
50
|
+
sns.heatmap(cm, annot=True, fmt='d', cmap='Blues')
|
|
51
|
+
plt.xlabel("Predicted")
|
|
52
|
+
plt.ylabel("Actual")
|
|
53
|
+
plt.title("Logistic Regression: Confusion Matrix")
|
|
54
|
+
plt.show()
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import pandas as pd
|
|
2
|
+
import numpy as np
|
|
3
|
+
import matplotlib.pyplot as plt
|
|
4
|
+
from sklearn.datasets import load_iris
|
|
5
|
+
|
|
6
|
+
# Load dataset
|
|
7
|
+
iris = load_iris()
|
|
8
|
+
|
|
9
|
+
# Create DataFrame
|
|
10
|
+
df = pd.DataFrame(iris.data,
|
|
11
|
+
columns=iris.feature_names)
|
|
12
|
+
|
|
13
|
+
# Add missing values manually
|
|
14
|
+
df.iloc[0,0] = np.nan
|
|
15
|
+
df.iloc[5,2] = np.nan
|
|
16
|
+
|
|
17
|
+
# Missing value analysis
|
|
18
|
+
print("Missing Values:\n")
|
|
19
|
+
print(df.isnull().sum())
|
|
20
|
+
|
|
21
|
+
# Fix missing values using mean
|
|
22
|
+
df.fillna(df.mean(), inplace=True)
|
|
23
|
+
|
|
24
|
+
# Outlier Analysis using Boxplot
|
|
25
|
+
plt.boxplot(df['sepal length (cm)'])
|
|
26
|
+
|
|
27
|
+
plt.title("Outlier Analysis")
|
|
28
|
+
plt.ylabel("Sepal Length")
|
|
29
|
+
|
|
30
|
+
plt.show()
|
|
File without changes
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyplotye
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A Python data analysis and visualization toolkit for preprocessing, clustering, regression and classification.
|
|
5
|
+
Author-email: Harish <hackerat2027@gmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2026 Your Name
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Project-URL: Homepage, https://github.com/HackerHarish1419/pyplotye
|
|
29
|
+
Project-URL: Bug Tracker, https://github.com/HackerHarish1419/pyplotye/issues
|
|
30
|
+
Keywords: plotting,visualization,machine learning,data analysis,sklearn
|
|
31
|
+
Classifier: Programming Language :: Python :: 3
|
|
32
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
33
|
+
Classifier: Operating System :: OS Independent
|
|
34
|
+
Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
35
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
36
|
+
Requires-Python: >=3.8
|
|
37
|
+
Description-Content-Type: text/markdown
|
|
38
|
+
License-File: LICENSE
|
|
39
|
+
Requires-Dist: numpy>=1.21
|
|
40
|
+
Requires-Dist: pandas>=1.4
|
|
41
|
+
Requires-Dist: matplotlib>=3.5
|
|
42
|
+
Requires-Dist: scikit-learn>=1.0
|
|
43
|
+
Requires-Dist: statsmodels>=0.13
|
|
44
|
+
Requires-Dist: seaborn>=0.11
|
|
45
|
+
Requires-Dist: minisom>=2.3
|
|
46
|
+
Provides-Extra: dev
|
|
47
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
48
|
+
Requires-Dist: twine>=4.0; extra == "dev"
|
|
49
|
+
Requires-Dist: build>=0.10; extra == "dev"
|
|
50
|
+
Dynamic: license-file
|
|
51
|
+
|
|
52
|
+
# pyplotye
|
|
53
|
+
|
|
54
|
+
[](https://badge.fury.io/py/pyplotye)
|
|
55
|
+
[](https://pypi.org/project/pyplotye/)
|
|
56
|
+
[](https://opensource.org/licenses/MIT)
|
|
57
|
+
|
|
58
|
+
> A Python plotting library — describe what `pyplotye` does in one sentence here.
|
|
59
|
+
|
|
60
|
+
## Features
|
|
61
|
+
|
|
62
|
+
- Feature 1
|
|
63
|
+
- Feature 2
|
|
64
|
+
- Feature 3
|
|
65
|
+
|
|
66
|
+
## Installation
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
pip install pyplotye
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Quick Start
|
|
73
|
+
|
|
74
|
+
```python
|
|
75
|
+
from pyplotye import hello
|
|
76
|
+
|
|
77
|
+
print(hello())
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## Documentation
|
|
81
|
+
|
|
82
|
+
Full documentation is available at [https://pyplotye.readthedocs.io](https://pyplotye.readthedocs.io).
|
|
83
|
+
|
|
84
|
+
## Contributing
|
|
85
|
+
|
|
86
|
+
Contributions are welcome! Please open an issue or submit a pull request on [GitHub](https://github.com/yourusername/pyplotye).
|
|
87
|
+
|
|
88
|
+
## License
|
|
89
|
+
|
|
90
|
+
This project is licensed under the MIT License — see the [LICENSE](LICENSE) file for details.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
pyplotye/__init__.py
|
|
5
|
+
pyplotye/binning.py
|
|
6
|
+
pyplotye/core.py
|
|
7
|
+
pyplotye/demoppa.py
|
|
8
|
+
pyplotye/demotmt.py
|
|
9
|
+
pyplotye/hist.py
|
|
10
|
+
pyplotye/knndt.py
|
|
11
|
+
pyplotye/linlog.py
|
|
12
|
+
pyplotye/missingval.py
|
|
13
|
+
pyplotye/smoknn.py
|
|
14
|
+
pyplotye.egg-info/PKG-INFO
|
|
15
|
+
pyplotye.egg-info/SOURCES.txt
|
|
16
|
+
pyplotye.egg-info/dependency_links.txt
|
|
17
|
+
pyplotye.egg-info/requires.txt
|
|
18
|
+
pyplotye.egg-info/top_level.txt
|
|
19
|
+
tests/test_core.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pyplotye
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pyplotye"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "Harish", email = "hackerat2027@gmail.com" },
|
|
10
|
+
]
|
|
11
|
+
description = "A Python data analysis and visualization toolkit for preprocessing, clustering, regression and classification."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
license = { file = "LICENSE" }
|
|
14
|
+
requires-python = ">=3.8"
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
"Topic :: Scientific/Engineering :: Visualization",
|
|
20
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
21
|
+
]
|
|
22
|
+
keywords = ["plotting", "visualization", "machine learning", "data analysis", "sklearn"]
|
|
23
|
+
dependencies = [
|
|
24
|
+
"numpy>=1.21",
|
|
25
|
+
"pandas>=1.4",
|
|
26
|
+
"matplotlib>=3.5",
|
|
27
|
+
"scikit-learn>=1.0",
|
|
28
|
+
"statsmodels>=0.13",
|
|
29
|
+
"seaborn>=0.11",
|
|
30
|
+
"minisom>=2.3",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.optional-dependencies]
|
|
34
|
+
dev = [
|
|
35
|
+
"pytest>=7.0",
|
|
36
|
+
"twine>=4.0",
|
|
37
|
+
"build>=0.10",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[project.urls]
|
|
41
|
+
"Homepage" = "https://github.com/HackerHarish1419/pyplotye"
|
|
42
|
+
"Bug Tracker" = "https://github.com/HackerHarish1419/pyplotye/issues"
|
|
43
|
+
|
|
44
|
+
[tool.setuptools.packages.find]
|
|
45
|
+
where = ["."]
|
|
46
|
+
include = ["pyplotye*"]
|
pyplotye-0.1.0/setup.cfg
ADDED