Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 199 Bytes

File metadata and controls

12 lines (10 loc) · 199 Bytes

Machine learning

Random forest classifier

library(randomForest)
rf_model <- randomForest(Class ~ ., data = df)

K-Means clustering

kmeans_model <- kmeans(df, centers = 3)
``