View source: R/order_weibullg.R
order_weibullg | R Documentation |
order_weibullg
is used to obtain a random sample of the k-th order statistic from a Weibull G distribution.
order_weibullg(size, spec, beta, c, k, n, p = 0.5, alpha = 0.02, ...)
size |
numeric, represents the size of the sample. |
spec |
character, represents an specific G distribution. Possible values "norm", "exp","lnorm","chisq". |
beta |
numeric, represents the scale parameter. Default value is 1. |
c |
numeric, represents the shape parameter. Default value is 1. |
k |
numeric, represents the k-th smallest value from a sample. |
n |
numeric, represents the size of the sample to compute the order statistic from. |
p |
numeric, represents the 100p percentile for the distribution of the k-th order statistic. Default value is population median, p = 0.5. |
alpha |
numeric, (1 - alpha) represents the confidence of an interval for the population percentile p of the distribution of the k-th order statistic. Default value is 0.05. |
... |
represents others parameters of the G distribution. |
A list with a random sample of order statistics from a Weibull G Distribution, the value of its join probability density function evaluated in the random sample and an approximate (1 - alpha) confidence interval for the population percentile p of the distribution of the k-th order statistic.
Carlos Alberto Cardozo Delgado <cardozorpackages@gmail.com>.
Gentle, J, Computational Statistics, First Edition. Springer - Verlag, 2009.
Naradajah, S. and Rocha, R. (2016) Newdistns: An R Package for New Families of Distributions, Journal of Statistical Software.
library(orders)
# A sample of size 10 of the 3-th order statistics from a Weibull Exponential Distribution
order_weibullg(10,"exp",beta=1,c=1,k=3,n=50,p=0.5,alpha=0.02)
# A sample of size 10 of the 3-th order statistics from a Weibull Normal Distribution
order_weibullg(10,"norm",beta=1,c=1,k=3,n=50,p=0.5)
# A sample of size 10 of the 3-th order statistics from a Weibull Log-normal Distribution
order_weibullg(10,"lnorm",beta=1,c=1,k=3,n=50,p=0.5)
# A sample of size 10 of the 3-th order statistics from a Weibull Chi-square Distribution
order_weibullg(10,"chisq",beta=1,c=1,k=3,n=50,p=0.5,df=3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.