Outlyzer
1.0.0
Outlyzer هي مكتبة Python التي توفر طرقًا مختلفة للكشف عن القيم المتطرفة في مجموعة البيانات. ويشمل تنفيذ أساليب المسافة Z و IQR و Mahalanobis لتحديد القيم المتطرفة ، وكذلك الأساليب القائمة على التصور باستخدام مخططات مبعثرة ، مؤامرات مربعات ، وأنواع أخرى من التصورات.
يمكنك تثبيت Outlyzer باستخدام PIP:
pip install outlyzer
الاستخدام:
- Import the desired method from the library, e.g.:
from Outlyzer.zscore import detect_outliers_zscore
from Outlyzer.iqr import detect_outliers_iqr
- Pass your dataset or data series to the respective function, e.g.:
outliers_zscore = detect_outliers_zscore(data)
outliers_iqr = detect_outliers_iqr(data)
The functions will return a boolean array indicating whether each data point is an outlier (True) or not (False).