Learn R Programming

pedometrics (version 0.6-3)

cdfStats: Descriptive statistics of the cumulative distribution function of a continuos variable

Description

This function returns summary statistics of the cumulative distribution function of a continuous variable estimated with spsurvey-package.

Usage

cdfStats(obj, ind, all = TRUE)

Arguments

obj
Object containing the estimated cumulative distribution function of the continuous variable. The resulting object of cont.analysis() of spsurvey-package.
ind
Indicator variable. The name of the continuous variable as displayed in the resulting object of cont.analysis().
all
Summary statistics to be returned. The default option (all = TRUE) returns all summary statistics available. If all = FALSE, then only estimated population mean and standard deviation are returned. See Details.

Value

  • A data.frame containing summary statistics of the cumulative distribution function of a continuous variable.

Details

The function cont.analysis() of spsurvey-package estimates the population total, mean, variance, and standard deviation of a continuous variable. It also estimates the standard error and confidence bounds of these population estimates. In some cases it may be interesting to see all estimates, for which one uses all = TRUE. However, in other circumstances there might be interest only in taking a look at the estimated population mean and standard deviation. Then the argument all has to be set to FALSE.

References

Kincaid, T. M. and Olsen, A. R. (2013). spsurvey: Spatial Survey Design and Analysis. R package version 2.6. URL: .

See Also

cont.analysis.

Examples

Run this code
## Estimate the CDF
my.cdf <- cont.analysis(spsurvey.obj = my.spsurvey)

## See indicator levels in the resulting object
levels(my.cdf$Pct$Indicator)

## Return all summary statistics of indicator variable 'dx'
cdfStats(my.cdf, "dx", all = TRUE)

Run the code above in your browser using DataLab