Title: | Estimating Finite Population Total |
---|---|
Description: | Given the values of sampled units and selection probabilities the desraj function in the package computes the estimated value of the total as well as estimated variance. |
Authors: | S.Sampath |
Maintainer: | S.Sampath <[email protected]> |
License: | GPL-3 |
Version: | 0.1.1 |
Built: | 2025-02-16 05:30:38 UTC |
Source: | https://github.com/cran/fpest |
Desraj estimator computes the estimated value of a finite population total when values of the study variable for the sampled units and the corresponding selection probabilities are given as per the order of selection. It is meant for use in Probability Proportional to Size Without Replacement Sampling Scheme.
desraj(y, p)
desraj(y, p)
y |
vector of vaues of sampled units as per the order of selection |
p |
vector of selection probabilities as per the order of selection |
Sampath,S.(2005) Sampling Theory and Methods,Alpha Science International, Ltd
y<-c(16,13,12,10) p<-c(0.21, 0.34, 0.12,0.10) desraj(y,p)
y<-c(16,13,12,10) p<-c(0.21, 0.34, 0.12,0.10) desraj(y,p)