Learn R Programming

prcbench (version 1.1.8)

Toolprecrec: Toolprecrec

Description

R6 class of the precrec tool

Arguments

Format

An R6 class object.

Super class

prcbench::ToolIFBase -> Toolprecrec

Methods

Inherited methods


Method new()

Default class initialization method.

Usage

Toolprecrec$new(...)

Arguments

...

set value for x_bins.


Method set_x_bins()

Set the number of supporting points as the number of bins.

Usage

Toolprecrec$set_x_bins(x_bins)

Arguments

x_bins

set value for x_bins.


Method clone()

The objects of this class are cloneable with this method.

Usage

Toolprecrec$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Details

Toolprecrec is a wrapper class for the precrec tool, which is an R library that provides calculations of ROC and Precision-Recall curves.

See Also

This class is derived from ToolIFBase. create_toolset for creating a list of tools.

Examples

Run this code
## Initialization
toolprecrec <- Toolprecrec$new()

## Show object info
toolprecrec

## create_toolset should be used for benchmarking and curve evaluation
toolprecrec2 <- create_toolset("precrec")

Run the code above in your browser using DataLab