Description Usage Arguments Value Other Functions Required Author(s) Examples
This function calculates an estimate of the deconvoluted cumulative distribution function (CDF) for the proportion (expressed as percent) and the total of a response variable, where the response variable may be defined for either a finite or an extensive resource. Optionally, for a finite resource, the size-weighted CDF can be calculated. In addition the standard error of the estimated CDF and confidence bounds are calculated. The simulation extrapolation deconvolution method (Stefanski and Bay, 1996) is used to deconvolute measurement error variance from the response. The user can supply the set of values at which the CDF is estimated. For the CDF of a proportion, the Horvitz-Thompson ratio estimator, i.e., the ratio of two Horvitz-Thompson estimators, is used to calculate the CDF estimate. For the CDF of a total, the user can supply the known size of the resource or the known sum of the size-weights of the resource, as appropriate. For the CDF of a total when either the size of the resource or the sum of the size- weights of the resource is provided, the classic ratio estimator is used to calculate the CDF estimate, where that estimator is the product of the known value and the Horvitz-Thompson ratio estimator. For the CDF of a total when neither the size of the resource nor the sum of the size-weights of the resource is provided, the Horvitz-Thompson estimator is used to calculate the CDF estimate. Variance estimates for the estimated CDF are calculated using either the local mean variance estimator or the simple random sampling (SRS) variance estimator. The choice of variance estimator is subject to user control. The local mean variance estimator requires the x-coordinate and the y-coordinate of each site. The SRS variance estimator uses the independent random sample approximation to calculate joint inclusion probabilities. Confidence bounds are calculated using a Normal distribution multiplier. In addition the function uses the estimated CDF to calculate percentile estimates. Estimated confidence bounds for the percentile estimates are calculated. The user can supply the set of values for which percentiles estimates are desired. Optionally, the user can use the default set of percentiles. The function can accommodate a stratified sample. For a stratified sample, separate estimates and standard errors are calculated for each stratum, which are used to produce estimates and standard errors for all strata combined. Strata that contain a single value are removed. For a stratified sample, when either the size of the resource or the sum of the size-weights of the resource is provided for each stratum, those values are used as stratum weights for calculating the estimates and standard errors for all strata combined. For a stratified sample when neither the size of the resource nor the sum of the size-weights of the resource is provided for each stratum, estimated values are used as stratum weights for calculating the estimates and standard errors for all strata combined. The function can accommodate single-stage and two-stage samples for both stratified and unstratified sampling designs. Finite population and continuous population correction factors can be utilized in variance estimation. The function checks for compatibility of input values and removes missing values.
1 2 3 4 5 6 7 8 | cdf.decon(z, wgt, sigma, var.sigma = NULL, x = NULL, y = NULL,
stratum = NULL, cluster = NULL, wgt1 = NULL, x1 = NULL,
y1 = NULL, popsize = NULL, popcorrect = FALSE, pcfsize = NULL,
N.cluster = NULL, stage1size = NULL, support = NULL,
sizeweight = FALSE, swgt = NULL, swgt1 = NULL, vartype = "Local",
conf = 95, cdfval = NULL, pctval = c(5, 10, 25, 50, 75, 90, 95),
check.ind = TRUE, warn.ind = NULL, warn.df = NULL,
warn.vec = NULL)
|
z |
Vector of the response values for each site. for each site. |
wgt |
Vector of the final adjusted weight (inverse of the sample inclusion probability) for each site, which is either the weight for a single-stage sample or the stage two weight for a two-stage sample. |
sigma |
Measurement error variance. |
var.sigma |
Variance of the measurement error variance. The default is NULL. |
x |
Vector of x-coordinates for location for each site, which is either the x-coordinate for a single-stage sample or the stage two x-coordinate for a two-stage sample. The default is NULL. |
y |
Vector of y-coordinates for location for each site, which is either the y-coordinate for a single-stage sample or the stage two y-coordinate for a two-stage sample. The default is NULL. |
stratum |
Vector of the stratum value for each site. The default is NULL. |
cluster |
Vector of the stage one sampling unit (primary sampling unit or cluster) code for each site. The default is NULL. |
wgt1 |
Vector of the final adjusted stage one weight for each site. The default is NULL. |
x1 |
Vector of the stage one x-coordinates for location for each site. The default is NULL. |
y1 |
Vector of the stage one y-coordinates for location for each site. The default is NULL. |
popsize |
Known size of the resource, which is used to perform ratio adjustment to estimators expressed using measurement units for the resource and to calculate strata proportions for calculating estimates for a stratified sample. For a finite resource, this argument is either the total number of sampling units or the known sum of size-weights. For an extensive resource, this argument is the measure of the resource, i.e., either known total length for a linear resource or known total area for an areal resource. For a stratified sample this variable must be a vector containing a value for each stratum and must have the names attribute set to identify the stratum codes. The default is NULL. |
popcorrect |
Logical value that indicates whether finite or continuous population correction factors should be employed during variance estimation, where TRUE = use the correction factor and FALSE = do not use the correction factor. The default is FALSE. To employ the correction factor for a single-stage sample, values must be supplied for arguments pcfsize and support. To employ the correction factor for a two-stage sample, values must be supplied for arguments N.cluster, stage1size, and support. |
pcfsize |
Size of the resource, which is required for calculation of finite and continuous population correction factors for a single-stage sample. For a stratified sample this argument must be a vector containing a value for each stratum and must have the names attribute set to identify the stratum codes. The default is NULL. |
N.cluster |
The number of stage one sampling units in the resource, which is required for calculation of finite and continuous population correction factors for a two-stage sample. For a stratified sample this argument must be a vector containing a value for each stratum and must have the names attribute set to identify the stratum codes. The default is NULL. |
stage1size |
Size of the stage one sampling units of a two-stage sample, which is required for calculation of finite and continuous population correction factors for a two-stage sample and must have the names attribute set to identify the stage one sampling unit codes. For a stratified sample, the names attribute must be set to identify both stratum codes and stage one sampling unit codes using a convention where the two codes are separated by the & symbol, e.g., "Stratum 1&Cluster 1". The default is NULL. |
support |
Vector of the support value for each site - the value one (1) for a site from a finite resource or the measure of the sampling unit associated with a site from an extensive resource, which is required for calculation of finite and continuous population correction factors. The default is NULL. |
sizeweight |
Logical value that indicates whether size-weights should be used in the analysis, where TRUE = use the size-weights and FALSE = do not use the size-weights. The default is FALSE. |
swgt |
Vector of the size-weight for each site, which is the stage two size-weight for a two-stage sample. The default is NULL. |
swgt1 |
Vector of the stage one size-weight for each site. The default is NULL. |
vartype |
The choice of variance estimator, where "Local" = local mean estimator and "SRS" = SRS estimator. The default is "Local". |
conf |
The confidence level. The default is 95. |
cdfval |
The set of values at which the CDF is estimated. If a set of values is not provided, then the sorted set of unique values of the response variable is used. The default is NULL. |
pctval |
The set of values at which percentiles are estimated. The default set is: 5, 10, 25, 50, 75, 90, 95. |
check.ind |
Logical value that indicates whether compatability checking of the input values is conducted, where TRUE = conduct compatibility checking and FALSE = do not conduct compatibility checking. The default is TRUE. |
warn.ind |
Logical value that indicates whether warning messages were generated, where TRUE = warning messages were generated and FALSE = warning messages were not generated. The default is NULL. |
warn.df |
A data frame for storing warning messages. The default is NULL. |
warn.vec |
Vector that contains names of the population type, the subpopulation, and an indicator. The default is NULL. |
If the function was called by the cont.analysis function, then output is an object in list format composed of a list named Results, which contains estimates and confidence bounds, and a data frame named warn.df, which contains warning messages. The Results list is composed of two data frames: one data frame named CDF, which contains the CDF estimates, and a second data frame named Pct, which contains the percentile estimates. If the function was called directly, then output is the Results list.
input.check
check input values for errors, consistency, and compatibility with analytical functions
wnas
remove missing values
vecprint
takes an input vector and outputs a character string with line breaks inserted
cdf.nresp
calculate the number of response values less than or equal to each of the set of values at which the CDF is estimated
simex
perform deconvolution of the response values
dcdf.prop
calculate the deconvoluted CDF for the proportion
dcdf.total
calculate the deconvoluted CDF for the total
dcdf.size.prop
calculate the size-weighted deconvoluted CDF for the proportion
dcdf.size.total
calculate the size-weighted deconvoluted CDF for the total
dcdfvar.prop
calculate variance of the deconvoluted CDF for the proportion
dcdfvar.total
calculate variance of the deconvoluted CDF for the total
dcdfvar.size.prop
calculate variance of the size-weighted deconvoluted CDF for the proportion
dcdfvar.size.total
calculate variance of the size-weighted deconvoluted CDF for the total
isotonic
perform isotonic regression
Tom Kincaid Kincaid.Tom@epa.gov
1 2 3 4 5 6 7 8 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.