gmptz: Gompetrz Curve Fitting

View source: R/gmptz.R

gmptzR Documentation

Gompetrz Curve Fitting

Description

This function fits the Gompertz Curve in Time Series Data along with estimates of the parameters and predicted value.

Usage

gmptz(y)

Arguments

y

a numeric vector

Details

The Gompertz curve is a type of mathematical model for a Time Series. It is a sigmoid function which describes growth as being slowest at the start and end of a given time period. The equation of Gompertz curve is given by , Y=k*a^(b^x)

Taking Logarithm on both sides we get, LogY=Logk+(b^x)*Loga ; OR, Z=A+B(C^x) , where Z=LogY , A=logk , B=loga ,C=b; It is a form of Modified Exponential.So ,now we can apply Method Of Group Average.

Value

a.hat , b.hat , k.hat : the estimated values of the parameters a,b and k.

predicted.value : the predicted values of y

Author(s)

ARNAB ROY, DEBARGHYA BAUL

Examples

 p=c(12,15,16,18,16,21,25,27,29,30,35,36)
 gmptz(p)

GmptzCurve documentation built on June 13, 2022, 9:05 a.m.

Related to gmptz in GmptzCurve...