classify | R Documentation |
Fit classifiers using time-series features using a resample-based approach and get a fast understanding of performance
classify(
data,
classifier = NULL,
train_size = 0.75,
n_resamples = 30,
by_set = TRUE,
use_null = FALSE,
seed = 123
)
tsfeature_classifier(
data,
classifier = NULL,
train_size = 0.75,
n_resamples = 30,
by_set = TRUE,
use_null = FALSE,
seed = 123
)
data |
|
classifier |
|
train_size |
|
n_resamples |
|
by_set |
|
use_null |
|
seed |
|
list
containing a named vector
of train-test set sizes, and a data.frame
of classification performance results
Trent Henderson
library(theft)
features <- theft::calculate_features(theft::simData,
feature_set = "catch22")
classifiers <- classify(features,
by_set = FALSE,
n_resamples = 3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.