Learn R Programming

mlexperiments (version 0.0.5)

MLBase: Basic R6 Class for the mlexperiments package

Description

Basic R6 Class for the mlexperiments package

Basic R6 Class for the mlexperiments package

Arguments

Public fields

results

A list. This field is used to store the final results of the respective methods.

Methods

Public methods


Method new()

Create a new MLBase object.

Usage

MLBase$new(seed, ncores = -1L)

Arguments

seed

An integer. Needs to be set for reproducibility purposes.

ncores

An integer to specify the number of cores used for parallelization (default: -1L).

Returns

A new MLBase R6 object.


Method clone()

The objects of this class are cloneable with this method.

Usage

MLBase$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.