शुरू करेंमुफ़्त में शुरू करें

Binarized scores

It's worthwhile to compare the performance of more than one anomaly detection algorithm before deciding which to use.

In this exercise, you'll construct a pair of binary anomaly scores based on local outlier factor (LOF) and the isolation forest. The isolation score vector iso_score generated in the previous exercise is preloaded for you to use.

यह अभ्यास पाठ्यक्रम का हिस्सा है

Introduction to Anomaly Detection in R

पाठ्यक्रम देखें

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

# Scale the measurement columns of thyroid
scaled_thyroid_measurements <- ___(___)

# Create a LOF score for the measurements
lof_score <- ___(___, ___)
कोड संपादित करें और चलाएँ