lblStatistic 1.0.0a0__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.
- lblstatistic-1.0.0a0/PKG-INFO +18 -0
- lblstatistic-1.0.0a0/README.md +2 -0
- lblstatistic-1.0.0a0/lblStatistic/__init__.py +18 -0
- lblstatistic-1.0.0a0/lblStatistic/statistic/__init__.py +1 -0
- lblstatistic-1.0.0a0/lblStatistic/statistic/detect.py +896 -0
- lblstatistic-1.0.0a0/lblStatistic/statistic/matrixBase.py +490 -0
- lblstatistic-1.0.0a0/lblStatistic/utils/__init__.py +10 -0
- lblstatistic-1.0.0a0/lblStatistic/utils/check.py +125 -0
- lblstatistic-1.0.0a0/lblStatistic/utils/distMatrix.py +565 -0
- lblstatistic-1.0.0a0/lblStatistic/utils/fontConfig.py +44 -0
- lblstatistic-1.0.0a0/lblStatistic/utils/tools.py +165 -0
- lblstatistic-1.0.0a0/lblStatistic/utils/varType.py +12 -0
- lblstatistic-1.0.0a0/lblStatistic.egg-info/PKG-INFO +18 -0
- lblstatistic-1.0.0a0/lblStatistic.egg-info/SOURCES.txt +17 -0
- lblstatistic-1.0.0a0/lblStatistic.egg-info/dependency_links.txt +1 -0
- lblstatistic-1.0.0a0/lblStatistic.egg-info/requires.txt +7 -0
- lblstatistic-1.0.0a0/lblStatistic.egg-info/top_level.txt +1 -0
- lblstatistic-1.0.0a0/pyproject.toml +29 -0
- lblstatistic-1.0.0a0/setup.cfg +4 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lblStatistic
|
|
3
|
+
Version: 1.0.0a0
|
|
4
|
+
Summary: A Python package for statistical analysis of labeled data.
|
|
5
|
+
Classifier: Programming Language :: Python :: 3
|
|
6
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
7
|
+
Requires-Python: >=3.6
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Requires-Dist: typing_extensions
|
|
10
|
+
Requires-Dist: lblConvert>=1.0.0
|
|
11
|
+
Requires-Dist: matplotlib
|
|
12
|
+
Requires-Dist: prettytable
|
|
13
|
+
Requires-Dist: seaborn
|
|
14
|
+
Requires-Dist: xlsxwriter
|
|
15
|
+
Requires-Dist: pandas
|
|
16
|
+
|
|
17
|
+
# lblStatistic
|
|
18
|
+
基于标签的指标统计
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# encoding: utf-8
|
|
3
|
+
# @author: firstelfin
|
|
4
|
+
# @time: 2026/05/08 20:24:47
|
|
5
|
+
|
|
6
|
+
import os
|
|
7
|
+
import sys
|
|
8
|
+
import warnings
|
|
9
|
+
from pathlib import Path
|
|
10
|
+
warnings.filterwarnings('ignore')
|
|
11
|
+
FILE = Path(__file__).resolve()
|
|
12
|
+
ROOT = FILE.parents[1] # project root directory
|
|
13
|
+
if str(ROOT) not in sys.path:
|
|
14
|
+
sys.path.append(str(ROOT)) # add ROOT to PATH
|
|
15
|
+
|
|
16
|
+
from lblStatistic.statistic import StatisticMatrix, StatisticConfusion
|
|
17
|
+
|
|
18
|
+
__version__ = '1.0.0-alpha'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .detect import StatisticConfusion, StatisticMatrix
|