engineerText: Automated feature engineering of text features

Description Usage Arguments Value Author(s) Examples

View source: R/engineerTextFeatures.R

Description

Automatically creates new features for all text features provided. Used for NLP cases

Usage

1
engineerText(x, textFeats, autoCode = TRUE)

Arguments

x

[data.frame | Required] Data.frame containing text features

textFeats

[character vector | Required] Character vector containing text feature names

autoCode

[logical | Optional] Should code be generated when running this function

Value

List of objects, containing engineered data.frame and code list if requested

Author(s)

Xander Horn

Examples

1
2
3
 new <- iris
 new$Species <- as.character(new$Species)
 res <- engineerText(new, "Species")

XanderHorn/autoML documentation built on Aug. 5, 2020, 11:45 a.m.