Last chance! 50% off unlimited learning
Sale ends in
This function converts “A”-type probability-weighted moments (PWMs, pwmRC
.
This function uses the defined relation between to two PWM types when the para
) of a right-tail censored distribution inclusive of the censoring fraction RC
in the function name is to denote R
ight-tail C
ensoring.
Apwm2BpwmRC(Apwm,para)
An R
list
is returned.
A vector of A-type PWMs:
The parameters of the distribution from a function such as pargpaRC
in which the list
element titled betas
and the right-tail censoring fraction zeta
.
W.H. Asquith
Hosking, J.R.M., 1995, The use of L-moments in the analysis of censored data, in Recent Advances in Life-Testing and Reliability, edited by N. Balakrishnan, chapter 29, CRC Press, Boca Raton, Fla., pp. 546--560.
Bpwm2ApwmRC
, pwmRC
# Data listed in Hosking (1995, table 29.2, p. 551)
H <- c(3,4,5,6,6,7,8,8,9,9,9,10,10,11,11,11,13,13,13,13,13,
17,19,19,25,29,33,42,42,51.9999,52,52,52)
# 51.9999 was really 52, a real (noncensored) data point.
z <- pwmRC(H,52)
# The B-type PMWs are used for the parameter estimation of the
# Reverse Gumbel distribution. The parameter estimator requires
# conversion of the PWMs to L-moments by pwm2lmom().
para <- parrevgum(pwm2lmom(z$Bbetas),z$zeta) # parameter object
Bbetas <- Apwm2BpwmRC(z$Abetas,para)
Abetas <- Bpwm2ApwmRC(Bbetas$betas,para)
# Assertion that both of the vectors of B-type PWMs should be the same.
str(Abetas) # A-type PWMs of the distribution
str(z$Abetas) # A-type PWMs of the original data
Run the code above in your browser using DataLab