├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── data.R ├── download_shapefiles.R ├── geom_boundary.R ├── geom_census.R ├── get_center_and_bbox_from_data.R ├── ggmap_modifiy.R ├── ggtiger.R ├── quiet_global_variable_in_cran_check.R ├── set_path_to_tiger.R └── utilities.R ├── README.Rmd ├── README.md ├── data-raw ├── data_fip_names.R ├── generate_all_county_fips.R ├── generate_all_state_fips.R └── generate_state_county_zipcode.R ├── data ├── all_county_fips.RData ├── all_state_fips.RData ├── all_zipcode.RData ├── state_county_zipstart.RData └── state_zipstart.RData ├── examples └── home_value.R ├── figures ├── boundaries.png ├── boundaries_with_fill.png ├── boundaries_with_point.png ├── boundaries_with_point_zoom.png ├── congressional_disctrict.png ├── congressional_disctrict_census.png └── zip_code.png ├── ggtiger.Rproj ├── man ├── all_county_fips.Rd ├── all_state_fips.Rd ├── all_zipcode.Rd ├── download_shapefile.Rd ├── download_zipcode.Rd ├── geom_boundary.Rd ├── geom_census.Rd ├── get_bbox.Rd ├── get_center.Rd ├── get_zoom.Rd ├── ggmap.Rd ├── set_path_to_tiger.Rd ├── stat_boundary.Rd ├── stat_census.Rd ├── state_county_zipstart.Rd └── state_zipstart.Rd ├── reading_materials └── shape_file_url_for_download.Rmd └── test ├── demo_code.R ├── diagnosis_piece_by_piece.R ├── prototype.R ├── test_examples.R ├── test_functions.R └── test_geom_census.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Guanglai Li 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/R/data.R -------------------------------------------------------------------------------- /R/download_shapefiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/R/download_shapefiles.R -------------------------------------------------------------------------------- /R/geom_boundary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/R/geom_boundary.R -------------------------------------------------------------------------------- /R/geom_census.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/R/geom_census.R -------------------------------------------------------------------------------- /R/get_center_and_bbox_from_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/R/get_center_and_bbox_from_data.R -------------------------------------------------------------------------------- /R/ggmap_modifiy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/R/ggmap_modifiy.R -------------------------------------------------------------------------------- /R/ggtiger.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/R/ggtiger.R -------------------------------------------------------------------------------- /R/quiet_global_variable_in_cran_check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/R/quiet_global_variable_in_cran_check.R -------------------------------------------------------------------------------- /R/set_path_to_tiger.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/R/set_path_to_tiger.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/R/utilities.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/README.md -------------------------------------------------------------------------------- /data-raw/data_fip_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/data-raw/data_fip_names.R -------------------------------------------------------------------------------- /data-raw/generate_all_county_fips.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/data-raw/generate_all_county_fips.R -------------------------------------------------------------------------------- /data-raw/generate_all_state_fips.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/data-raw/generate_all_state_fips.R -------------------------------------------------------------------------------- /data-raw/generate_state_county_zipcode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/data-raw/generate_state_county_zipcode.R -------------------------------------------------------------------------------- /data/all_county_fips.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/data/all_county_fips.RData -------------------------------------------------------------------------------- /data/all_state_fips.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/data/all_state_fips.RData -------------------------------------------------------------------------------- /data/all_zipcode.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/data/all_zipcode.RData -------------------------------------------------------------------------------- /data/state_county_zipstart.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/data/state_county_zipstart.RData -------------------------------------------------------------------------------- /data/state_zipstart.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/data/state_zipstart.RData -------------------------------------------------------------------------------- /examples/home_value.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/examples/home_value.R -------------------------------------------------------------------------------- /figures/boundaries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/figures/boundaries.png -------------------------------------------------------------------------------- /figures/boundaries_with_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/figures/boundaries_with_fill.png -------------------------------------------------------------------------------- /figures/boundaries_with_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/figures/boundaries_with_point.png -------------------------------------------------------------------------------- /figures/boundaries_with_point_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/figures/boundaries_with_point_zoom.png -------------------------------------------------------------------------------- /figures/congressional_disctrict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/figures/congressional_disctrict.png -------------------------------------------------------------------------------- /figures/congressional_disctrict_census.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/figures/congressional_disctrict_census.png -------------------------------------------------------------------------------- /figures/zip_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/figures/zip_code.png -------------------------------------------------------------------------------- /ggtiger.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/ggtiger.Rproj -------------------------------------------------------------------------------- /man/all_county_fips.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/all_county_fips.Rd -------------------------------------------------------------------------------- /man/all_state_fips.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/all_state_fips.Rd -------------------------------------------------------------------------------- /man/all_zipcode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/all_zipcode.Rd -------------------------------------------------------------------------------- /man/download_shapefile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/download_shapefile.Rd -------------------------------------------------------------------------------- /man/download_zipcode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/download_zipcode.Rd -------------------------------------------------------------------------------- /man/geom_boundary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/geom_boundary.Rd -------------------------------------------------------------------------------- /man/geom_census.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/geom_census.Rd -------------------------------------------------------------------------------- /man/get_bbox.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/get_bbox.Rd -------------------------------------------------------------------------------- /man/get_center.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/get_center.Rd -------------------------------------------------------------------------------- /man/get_zoom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/get_zoom.Rd -------------------------------------------------------------------------------- /man/ggmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/ggmap.Rd -------------------------------------------------------------------------------- /man/set_path_to_tiger.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/set_path_to_tiger.Rd -------------------------------------------------------------------------------- /man/stat_boundary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/stat_boundary.Rd -------------------------------------------------------------------------------- /man/stat_census.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/stat_census.Rd -------------------------------------------------------------------------------- /man/state_county_zipstart.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/state_county_zipstart.Rd -------------------------------------------------------------------------------- /man/state_zipstart.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/man/state_zipstart.Rd -------------------------------------------------------------------------------- /reading_materials/shape_file_url_for_download.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/reading_materials/shape_file_url_for_download.Rmd -------------------------------------------------------------------------------- /test/demo_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/test/demo_code.R -------------------------------------------------------------------------------- /test/diagnosis_piece_by_piece.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/test/diagnosis_piece_by_piece.R -------------------------------------------------------------------------------- /test/prototype.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/test/prototype.R -------------------------------------------------------------------------------- /test/test_examples.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/test/test_examples.R -------------------------------------------------------------------------------- /test/test_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/test/test_functions.R -------------------------------------------------------------------------------- /test/test_geom_census.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GL-Li/ggtiger/HEAD/test/test_geom_census.R --------------------------------------------------------------------------------