Learn R Programming

IFC (version 0.2.1)

getFeaturesValues: Features Values Extraction

Description

Extracts features values according to features definitions

Usage

getFeaturesValues(
  features,
  features_def,
  operators = c("+", "-", "*", "/", "(", ")", "ABS", "COS", "SIN", "SQR", "SQRT"),
  split = "|",
  ...
)

Value

a data.frame of features values.

Arguments

features

a data.frame of features, typically an object of class `IFC_features`.

features_def

a list of features definitions, typically an object of class `IFC_features_def`.

operators

operators used. Default is c("+", "-", "*", "/", "(", ")", "ABS", "COS", "SIN", "SQR", "SQRT").

split

string used for splitting. Default is "|".