prepareDataset {less} | R Documentation |
Prepare a Dataset
Description
Takes X and y datasets and merges them into a dataframe with column names (y, X_1, X_2 ...)
Usage
prepareDataset(X, y)
Arguments
X |
Independent variables |
y |
Response variables |
Value
A named dataframe which consists of X and y combined
Examples
X <- matrix(1:20, nrow = 4)
y <- c(5:8)
prepareDataset(X, y)
[Package less version 0.1.0 Index]