Skip to content
Snippets Groups Projects
0_config.R 763 B
Newer Older
  • Learn to ignore specific revisions
  • p0_targets <- list(
      tar_target(
        # Create a tibble to define color palette, fig width and height, county and conus outline colors, background color, font name, and font size 
    
          width_desktop = 16,
          height_desktop = 9,
          width_mobile = 9,
          height_mobile = 16,
    
          counties_outline_col = "white",
          conus_outline_col = 'white',
    
          bg_col = "white",
          load_font = 'Source Sans Pro',
    
          font_size_desktop = 24,
          font_size_mobile = 20
    
      ),
      tar_target(
        # Create a tibble to define color palette for postive and negatively correlated associated dimensions
    
        tibble(
          pal_positive = "Oranges",
          pal_neg = "Blues"
        )