| POLYREG | R Documentation |
This function builds a polynomial regression model.
POLYREG(
x,
y,
degree = 2,
tune = FALSE,
methodparameters = NULL,
graph = FALSE,
seed = NULL,
...
)
x |
Predictor |
y |
Response |
degree |
The polynom degree. |
tune |
If true, the function returns parameters instead of a classification model. |
methodparameters |
Present for interface consistency with |
graph |
Present for interface consistency with |
seed |
A specified seed for random number generation, so that two runs on the same data give the same model. Every learning method accepts it, so that it can be set the same way whatever the method; the deterministic ones simply have nothing to draw and give the same model with or without it. |
... |
Other parameters. |
The classification model, as an object of class model-class.
polyreg
## Not run:
require (datasets)
data (trees)
POLYREG (trees [, -3], trees [, 3])
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.