fit_curvature_max {daltoolbox}R Documentation

maximum curvature analysis

Description

Fitting a curvature model in a sequence of observations. It extracts the the maximum curvature computed.

Usage

fit_curvature_max()

Value

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:

Examples

x <- seq(from=1,to=10,by=0.5)
dat <- data.frame(x = x, value = -log(x), variable = "log")
myfit <- fit_curvature_max()
res <- transform(myfit, dat$value)
head(res)

[Package daltoolbox version 1.0.767 Index]