Yearly Trends - Incentive Classifications

Code
knitr::opts_chunk$set(warning = FALSE, message = FALSE)

options(scipen = 999)

library(tidyverse)
library(glue)
library(sf)
library(DT)
library(flextable)

nicknames <- readxl::read_excel("../Necessary_Files/muni_shortnames.xlsx")

cook_sums <- read_csv("../Output/ptaxsim_cook_level_2006to2023_new.csv") 

muni_shp <- read_sf("../Necessary_Files/muni_shp.gpkg")


knitr::opts_chunk$set(warning = FALSE, message = FALSE)

set_flextable_defaults(theme_fun = theme_vanilla, 
                       padding = 2,
                       line_spacing = 1,
                       big.mark = ",",
                       )

options(DT.options = list())

FitFlextableToPage <- function(ft, pgwidth = 6){

  ft_out <- ft %>% autofit()

  ft_out <- width(ft_out, width = dim(ft_out)$widths*pgwidth /(flextable_dim(ft_out)$widths))
  return(ft_out)
}

# Create an empty data frame with a column named "year"
params <- data.frame(year = numeric(0))

# Add the value 2021 to the "year" column
params <- rbind(params, data.frame(year = 2023))

min_year = min(cook_sums$year)
max_year = max(cook_sums$year)

cmap_colors = c("#1e478e", "#6dae4f", "#d3b42b", "#008fd5", "#ca3428", 
                "#ade0ee", "#3e6730", "#d0e4a4")

alea_theme <- function() {
  font <-"Whitney"
  
  ggplot2::theme(
    legend.position = "bottom",
  #  legend.title = element_blank,
    
    panel.background = ggplot2::element_blank(),
    panel.grid.minor.x = ggplot2::element_blank(),
    panel.grid.major.y = element_line(color = "grey"),
    panel.grid.minor.y = element_line(color = "grey", 
                                      linetype = "dashed"),
   # panel.grid.major.x = ggplot2::element_blank(),
    axis.ticks = element_line(color = "gray"),
  axis.ticks.x = element_blank()
  )
  
}

Export Tables

Code
library(readxl)

tablelist <- list(
  # table 1 - from cmap
  "Table 2" = Table2_allyears,
  # Table 3 from individual year quarto files
  # Table 4 from individual year quarto files
  # Table 5 from individual year quarto files
  # Table 6 from individual year quarto files
  # Table 7 from individual year quarto files
  # Table 8 from individual year quarto files
  "Table 9" = Table9_data, # goes with Figure 10. FMV growth indexed by incent status and land use
  "Table 10" = Table_newconstruction, 
  "AppIV Table 1" = Appendix_PinCount_allyears,
  "AppIV Table 2" = Appendix_Table_Class8PINs,  # Was table 6 in old versions of document.
  
  "Figure 1 Data" = Figure1_allyears,
  "Figure 1 2011-2022" = Figure1_data, # only 2022 to 2022 
  "Figure 2 Data"  = Figure2_data, # Line Chart - FMV for single and multi family vs C&I FMV
  "Figure 3 Data" = Figure3_data, #  Line Chart - Increase in FMV indexed to 2011 for Select property types
  # Figure 4 from individual year quarto files
  # Figure 5A and 5B from individual year quarto files
  # Figure 6-8 by cmap
 # "Figure 9 Data" = Figure9_data, # dot plots from individual year quarto files
  "Figure 10 Data" = Figure10_data, # FMV growth indexed by incent status and land use
  
  "Appendix Figure X" = Appendix_Figure2_PinCount,
  "Appendix Figure X+1" = Appendix_PinCount_growth_allyears,
  "Appendix Figure X+2" = Appendix_Figure_FMVgrowth_allyears
  
  #  "Muni Stats" = munilevel,
  # "Muni Rate Change" = muni_ratechange,
  # 
  # "Cook Sums" = table_cook,
  # "Cook Major Class Sums" = cty_MC_table,
  # "Cook Rate Change" = cook_ratechange
)



writexl::write_xlsx(tablelist, "../Output/calculations_report_content_2025_03_27.xlsx")

# readme <- c(
#   "Pin Change: Count of PINs gaining or losing an incentive class each year.",
#   "Major Class Change: Counts of PINs becoming major class types each year.",
# 
#   "IndustShare_all is same as Indust_share but includes all munis.",
#   "CommercShare_all is same as Commerc_share but includes all munis.") %>% as.data.frame()
# 
# paper_tables <- list(
#   "README"= readme,
#   
#   "Pin Change per Year" = pins_per_year,
# 
#   
# )

# writexl::write_xlsx(paper_tables, "../Output/incentive_report_tables.xlsx")
beepr::beep(sound = "mario")