April 2017
Beginner to intermediate
420 pages
9h 58m
English
As mentioned, the package that we will use is neuralnet. The function in neuralnet will call for the use of a formula as we used elsewhere, such as y~x1+x2+x3+x4, data = df. In the past, we used y~, to specify all the other variables in the data as inputs. However, neuralnet does not accommodate this at the time of writing. The way around this limitation is to use the as.formula() function. After first creating an object of the variable names, we will use this as an input in order to paste the variables properly on the right side of the equation:
> n <- names(shuttleTrain) > form <- as.formula(paste("use ~", paste(n[!n %in% "use"], collapse = " + "))) > form use ~ stability.xstab + error.MM + error.SS + error.XL ...Read now
Unlock full access