compare
. Dummy variables are
created for categorical variables.
datashape(dataset, y, x, subs)
datashape
will not function if missing values are present. @examples
## Preparing the iris dataset
data(iris)
iris.shaped <- datashape(dataset = iris, y = 4)
head(iris.shaped)
## Creating a copy of iris with sepal-related predictors and a subset of observations.
iris.sub <- datashape(dataset = iris, y = 4, x = c(1,2), subs = c(1:20, 50:70))
head(iris.sub)compare
function. The outcome column number must be
specified, and specific predictors and observation subsets may be specified. 2-level
categorical variables will be converted to binary, while dummy variables will be
created for categorical predictors with greater than two levels.The "datashaped" dataset should be saved to a new object.