nwos_response_rate: NWOS Response Rate

Description Usage Arguments Value References Examples

View source: R/_ARCHIVE/CopyOfnwos_response_rate.R View source: R/nwos_response_rate.R

Description

This function calculates response rates for the NWOS.

Usage

1
nwos_response_rate(stratum, point.count, response)

Arguments

stratum

vector indicating inclusion (1) and exclusion (0) in the stratum of interest.

point.count

vector of the number of sample points associated with each observation. Default is 1.

response

vector indicating response (1) and non-response (0).

Value

Response rate in the stratum.

References

Butler, B.J. In review. Weighting for the US Forest Service, National Woodland Owner Survey. U.S. Department of Agriculture, Forest Service, Northern Research Station. Newotwn Square, PA.

Examples

1
2
3
wi <- tbl_df(read.csv("data/wi.csv")) %>% mutate(ROW_NAME = row.names(wi), AC_WOOD = ACRES_FOREST, FFO = if_else(LAND_USE == 1 & OWN_CD == 45 & AC_WOOD >= 1, 1, 0), RESPONSE = if_else(RESPONSE_PROPENSITY >= 0.5, 1, 0), RESPONSE = if_else(is.na(RESPONSE_PROPENSITY), 0, RESPONSE))
WI_FFO_RR <- nwos_response_rate(stratum = wi$FFO, point.count = wi$POINT_COUNT, response = wi$RESPONSE)
WI_FFO_RR

bbutler01/nwos documentation built on Aug. 30, 2019, 12:57 p.m.