PRD is the mean ratio divided by the mean ratio weighted by sale price. It is a measure of vertical equity in assessment. Vertical equity means that properties at different levels of the income distribution should be similarly assessed.
PRD centers slightly above 1 and has a generally accepted value of between 0.98 and 1.03, as defined in the IAAO Standard on Ratio Studies Section 9.2.7. Higher PRD values indicate regressivity in assessment.
NOTE: The IAAO recommends trimming outlier ratios before calculating PRD, as it is extremely sensitive to large outliers. PRD is being deprecated in favor of PRB, which is less sensitive to outliers and easier to interpret.
prd(assessed, sale_price, na.rm = FALSE)
prd_ci(assessed, sale_price, nboot = 100, alpha = 0.05, na.rm = FALSE)
prd_met(x)
A numeric vector of assessed values. Must be the same
length as sale_price
.
A numeric vector of sale prices. Must be the same length
as assessed
.
Default FALSE. A boolean value indicating whether or not to remove NA values. If missing values are present but not removed the function will output NA.
Default 100. Number of iterations to use to estimate the output statistic confidence interval.
Default 0.05. Numeric value indicating the confidence interval to return. 0.05 will return the 95% confidence interval.
Numeric vector of sales ratio statistic(s) to check against IAAO/Quintos standards.
prd()
: Returns a numeric vector containing the PRD of the
input vectors.
prd_ci()
: Returns upper and lower CI as a named vector.
prd_met()
: Returns TRUE when input PRD meets IAAO standards
(between 0.98 and 1.03).
# Calculate PRD
prd(ratios_sample$assessed, ratios_sample$sale_price)
#> [1] 1.048419
# Calculate PRD confidence interval
prd_ci(ratios_sample$assessed, ratios_sample$sale_price)
#> 2.5% 97.5%
#> 1.032947 1.064244