Learn R Programming

Rfuzzycoco (version 0.1.0)

shared_params: shared params

Description

shared params

Arguments

data

the data to fit as a data frame. The output variables must be grouped AFTER the input variables

engine

the fuzzy coco fit engine to use, one of rcpp and hybrid

formula

the fuzzy coco model as a formula

fuzzy_system_desc

a fuzzy system description as a named list

max_generations

The maximum number of iterations of the algorithm. Each iteration produces a new generation of the rules and membership functions populations.

max_fitness

a stop condition: the iterations stop as soon as a generated fuzzy system fitness reaches that threshold.

mode

the type of model, either classification or regression

model

a Fuzzy Coco model as a fuzzy_coco object

params

fuzzy coco parameters, as a recursive named list, cf params()

progress

whether to display the computation progress (using progressr, if available)

seed

the RNG seed to use (to fit the model)

until

function that takes an engine and returns TRUE if and only if the evolution must stop. It is a way for the user to customize the stop conditions of the algorithm.

verbose

whether to be verbose

x

the input variables data (usually to fit) as a dataframe

y

the output variables data (usually to fit) as a dataframe