fastml is a streamlined R package designed to simplify the training, evaluation, and comparison of multiple machine learning models. It offers comprehensive data preprocessing, supports a wide range of algorithms with hyperparameter tuning, and provides performance metrics alongside visualization tools to facilitate efficient and effective machine learning workflows.
You can install the latest stable version of fastml from CRAN using:
install.packages("fastml")
For the development version, install directly from GitHub using the devtools package:
# Install devtools if you haven't already
install.packages("devtools")
# Install fastml from GitHub
devtools::install_github("selcukorkmaz/fastml")
Here's a simple workflow to get you started with fastml:
library(fastml)
# Example dataset
data(iris)
iris <- iris[iris$Species != "setosa", ] # Binary classification
iris$Species <- factor(iris$Species)
# Train models
model <- fastml(
data = iris,
label = "Species"
)
# View model summary
summary(model)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.