View source: R/trans_fit_curvature_min.R
fit_curvature_min | R Documentation |
Fitting a curvature model in a sequence of observations. It extracts the the minimum curvature computed.
fit_curvature_min()
Returns an object of class fit_curvature_max, which inherits from the fit_curvature and dal_transform classes. The object contains a list with the following elements:
x: The position in which the minimum curvature is reached.
y: The value where the the minimum curvature occurs.
yfit: The value of the minimum curvature.
x <- seq(from=1,to=10,by=0.5)
dat <- data.frame(x = x, value = log(x), variable = "log")
myfit <- fit_curvature_min()
res <- transform(myfit, dat$value)
head(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.