Property Tax Fairness
From the Center for Municipal Finance

To generate the report, first Download Data. This dataset is a cleaned public dataset we can use.

After downloading the dataset, please run the below R code, for example in RStudio. Remember to replace your output directory” with the path where you want to save the generated report.

library(tidyverse)
library(data.table)
library(cmfproperty)

df <- fread(“final_merged.csv”)

df <- df %>% mutate(SALE_YEAR = SALEYEAR, SALE_PRICE = SALEPRICE, ASSESSED_VALUE = TOTVAL, TAX_YEAR = SALE_YEAR)
df <- df %>% filter(ASSESSED_VALUE > 100, SALE_PRICE > 100)

ratios <- cmfproperty::reformat_data(dfsale_col = “SALE_PRICE”assessment_col = “ASSESSED_VALUE”sale_year_col = “SALE_YEAR”)

cmfproperty::make_report(ratiosjurisdiction_name = “Las Vegas City”output_dir = your output directory”) 

Below is a pre-generated example report:

Report