Learn R Programming

featuretoolsR (version 0.4.4)

dfs: Deep Feature Synthesis

Description

The main function from featuretools used to create new features.

Usage

dfs(entityset, target_entity, agg_primitives = NULL,
  trans_primitives = NULL, max_depth = 2L, ...)

Arguments

entityset

The entityset on which to perform dfs.

target_entity

The name of the entity on which to perform dfs.

agg_primitives

Primitives passed to relational data.

trans_primitives

Primitives passed to non-relational data.

max_depth

Controls the maximum depth of features.

...

Additional parameters passed to `featuretools.dfs`.

Value

A `featuretools` feature matrix.

Examples

Run this code
# NOT RUN {
es <- as_entityset(cars, index = "row_number")
dfs(es, target_entity = "df1", trans_primitives = c("and"))
# }

Run the code above in your browser using DataLab