SHE {biogeom} | R Documentation |
Sitthiyot-Holasut Equation
Description
SHE
is used to calculate values at given
values using
the Sitthiyot-Holasut equation. The equation describes the
coordinates of the Lorenz curve.
Usage
SHE(P, x)
Arguments
P |
the parameters of the Sitthiyot-Holasut equation. |
x |
the given |
Details
Here, and
represent the independent and dependent variables, respectively;
and
,
,
and
are constants to be estimated, where
,
,
, and
.
There are four elements in
P
, representing
the values of ,
,
and
, respectively.
Value
The values predicted by the Sitthiyot-Holasut equation.
Note
The numerical range of should range between 0 and 1.
When
, the
value is assigned to be
.
Author(s)
Peijian Shi pjshi@njfu.edu.cn, Johan Gielis johan.gielis@uantwerpen.be, Brady K. Quinn Brady.Quinn@dfo-mpo.gc.ca.
References
Sitthiyot, T., Holasut, K. (2023) A universal model for the Lorenz curve with novel applications for datasets containing zeros and/or exhibiting extreme inequality. Scientific Reports 13, 4729. doi:10.1038/s41598-023-31827-x
See Also
fitLorenz
, MPerformanceE
, SarabiaE
, SCSE
Examples
X1 <- seq(0, 1, len=2000)
Pa3 <- c(0, 1, 0.446, 1.739)
Y3 <- SHE(P=Pa3, x=X1)
dev.new()
plot( X1, Y3, cex.lab=1.5, cex.axis=1.5, type="l", asp=1, xaxs="i",
yaxs="i", xlim=c(0, 1), ylim=c(0, 1),
xlab="Cumulative proportion of the number of infructescences",
ylab="Cumulative proportion of the infructescence length" )
graphics.off()