View source: R/describe_nonlinear.R
describe_nonlinear | R Documentation |
This function summarises the smooth term trend in terms of linear segments. Using the approximate derivative, it separates a non-linear vector into quasi-linear segments (in which the trend is either positive or negative). Each of this segment its characterized by its beginning, end, size (in proportion, relative to the total size) trend (the linear regression coefficient) and linearity (the R2 of the linear regression).
describe_nonlinear(data, ...)
## S3 method for class 'data.frame'
describe_nonlinear(data, x = NULL, y = NULL, ...)
estimate_smooth(data, ...)
data |
The data containing the link, as for instance obtained by
|
... |
Other arguments to be passed to or from. |
x , y |
The name of the responses variable ( |
A data frame of linear description of non-linear terms.
# Create data
data <- data.frame(x = rnorm(200))
data$y <- data$x^2 + rnorm(200, 0, 0.5)
model <<- lm(y ~ poly(x, 2), data = data)
link_data <- estimate_relation(model, length = 100)
describe_nonlinear(link_data, x = "x")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.