Calculate the area under the curve.
Usage
Area_Under_Curve(x, y, method = "trapezoid")
Arguments
- x
the x-points of the curve
- y
the y-points of the curve
- method
can be "trapezoid" (default), "step" or "spline"
Value
Area Under the Curve (AUC)
Examples
x <- seq(0, pi, length.out = 200)
plot(x = x, y = sin(x), type = "l")
Area_Under_Curve(x = x, y = sin(x), method = "trapezoid")
#> [1] 1.999958