View source: R/split_data_class.R
split_data | R Documentation |
The data matrix is divided into two subsets.A predefined proportion of the samples are randomly selected for a training set, and the remaining samples are used for the test set.
split_data(p_train, ...)
p_train |
(numeric) The proportion of samples selected for the training set. |
... |
Additional slots and values passed to |
A split_data
object with the following output
slots:
training | (DatasetExperiment) A DatasetExperiment object containing samples selected for the training set. |
testing | (DatasetExperiment) A DatasetExperiment object containing samples selected for the testing set. |
A split_data
object inherits the following struct
classes:
[split_data]
>> [model]
>> [struct_class]
M = split_data(
p_train = 0.75)
M = split_data(p_train=0.75)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.