| Hosted by CoCalc | Download
Kernel: Python 3 (system-wide)
from pycaret.utils import version version()
'2.1.2'
from pycaret.datasets import get_data data = get_data('anomaly')
Col1 Col2 Col3 Col4 Col5 Col6 Col7 Col8 Col9 Col10
0 0.263995 0.764929 0.138424 0.935242 0.605867 0.518790 0.912225 0.608234 0.723782 0.733591
1 0.546092 0.653975 0.065575 0.227772 0.845269 0.837066 0.272379 0.331679 0.429297 0.367422
2 0.336714 0.538842 0.192801 0.553563 0.074515 0.332993 0.365792 0.861309 0.899017 0.088600
3 0.092108 0.995017 0.014465 0.176371 0.241530 0.514724 0.562208 0.158963 0.073715 0.208463
4 0.325261 0.805968 0.957033 0.331665 0.307923 0.355315 0.501899 0.558449 0.885169 0.182754
from pycaret.anomaly import * ano1 = setup(data, session_id=123, log_experiment=True, experiment_name='anomaly1')
Initiated . . . . . . . . . . . . . . . . . . 10:22:36
Status . . . . . . . . . . . . . . . . . . Loading Dependencies
Initiated . . . . . . . . . . . . . . . . . . 10:22:36
Status . . . . . . . . . . . . . . . . . . Preparing Data for Modeling
Data Type
Col1 Numeric
Col2 Numeric
Col3 Numeric
Col4 Numeric
Col5 Numeric
Col6 Numeric
Col7 Numeric
Col8 Numeric
Col9 Numeric
Col10 Numeric
models()
iforest = create_model('iforest')
knn = create_model('knn', fraction = 0.1)
iforest_results = assign_model(iforest) iforest_results.head()
pred_new = predict_model(iforest, data=data) pred_new.head()
Col1 Col2 Col3 Col4 Col5 Col6 Col7 Col8 Col9 Col10 Label Score
0 0.263995 0.764929 0.138424 0.935242 0.605867 0.518790 0.912225 0.608234 0.723782 0.733591 0 -0.035865
1 0.546092 0.653975 0.065575 0.227772 0.845269 0.837066 0.272379 0.331679 0.429297 0.367422 0 -0.084927
2 0.336714 0.538842 0.192801 0.553563 0.074515 0.332993 0.365792 0.861309 0.899017 0.088600 1 0.025356
3 0.092108 0.995017 0.014465 0.176371 0.241530 0.514724 0.562208 0.158963 0.073715 0.208463 1 0.042415
4 0.325261 0.805968 0.957033 0.331665 0.307923 0.355315 0.501899 0.558449 0.885169 0.182754 0 -0.023408