junshan-kit 2.3.4__py2.py3-none-any.whl → 2.3.5__py2.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.
junshan_kit/DataProcessor.py
CHANGED
@@ -130,3 +130,15 @@ class CSV_TO_Pandas:
|
|
130
130
|
print("=" * 80 + "\n")
|
131
131
|
|
132
132
|
return df
|
133
|
+
|
134
|
+
|
135
|
+
class StepByStep:
|
136
|
+
def __init__(self):
|
137
|
+
pass
|
138
|
+
|
139
|
+
def print_text_fea(self, df, text_feature_cols):
|
140
|
+
for col in text_feature_cols:
|
141
|
+
print(f"\n{'-'*80}")
|
142
|
+
print(f"Feature: \"{col}\"")
|
143
|
+
print(f"{'-'*80}")
|
144
|
+
print(f"Unique values ({len(df[col].unique())}): {df[col].unique().tolist()}")
|
@@ -0,0 +1,7 @@
|
|
1
|
+
junshan_kit/DataProcessor.py,sha256=niI7kun5lcBpTJaHzATE5vqnD_9GTyTID9fcKeYHxZ0,5316
|
2
|
+
junshan_kit/DataSets.py,sha256=L3D0eBCKHWqpy3qXZvWQP_yKaNzWyj5W1_OLS736xjg,8972
|
3
|
+
junshan_kit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
+
junshan_kit/kit.py,sha256=tB1TpW9hW1EweK1RQwHOdUo7uG1QU4vSeyR0fdaSydo,9569
|
5
|
+
junshan_kit-2.3.5.dist-info/METADATA,sha256=mZnRM7gqHpgFRZPQ1caQHNeUm7bpTW-XsM0vf733xDE,329
|
6
|
+
junshan_kit-2.3.5.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
|
7
|
+
junshan_kit-2.3.5.dist-info/RECORD,,
|
@@ -1,7 +0,0 @@
|
|
1
|
-
junshan_kit/DataProcessor.py,sha256=E9EDF6XBNNOTuEhSON_jnId-iKgf4QG3szB-goeXECA,4968
|
2
|
-
junshan_kit/DataSets.py,sha256=L3D0eBCKHWqpy3qXZvWQP_yKaNzWyj5W1_OLS736xjg,8972
|
3
|
-
junshan_kit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
junshan_kit/kit.py,sha256=tB1TpW9hW1EweK1RQwHOdUo7uG1QU4vSeyR0fdaSydo,9569
|
5
|
-
junshan_kit-2.3.4.dist-info/METADATA,sha256=Mz0Rw0l0PUVvFwT8jqtudWcYFHhoScgU5qa2Kxfg5AQ,329
|
6
|
-
junshan_kit-2.3.4.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
|
7
|
-
junshan_kit-2.3.4.dist-info/RECORD,,
|
File without changes
|