Machine learning Random forest classifier library(randomForest) rf_model <- randomForest(Class ~ ., data = df) K-Means clustering kmeans_model <- kmeans(df, centers = 3) ``