MulaiMulai sekarang secara gratis

Cross-tabulate binary scores

The table() function tallies the number of occurrences of combinations of values across one or more vectors. The orientation of the output table depends on the order that the input vectors are specified. For example in the table

table(currency, country)

        country
currency UK USA
       $  0   1
       £  1   0

the rows are indexed by currency because this appears first in the table() function.

Latihan ini adalah bagian dari kursus

Introduction to Anomaly Detection in R

Lihat Kursus

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Tabulate agreement of label and binary isolation score 
table(___, ___)

# Tabulate agreement of label and binary LOF score 
Edit dan Jalankan Kode