{"id":6805,"date":"2024-01-01T15:53:30","date_gmt":"2024-01-01T15:53:30","guid":{"rendered":"https:\/\/www.garysieling.com\/blog\/?p=6805"},"modified":"2024-01-01T16:22:06","modified_gmt":"2024-01-01T16:22:06","slug":"export-census-acs5-data-by-geoid-block-group-to-csv-in-r","status":"publish","type":"post","link":"https:\/\/www.garysieling.com\/blog\/export-census-acs5-data-by-geoid-block-group-to-csv-in-r\/","title":{"rendered":"Export Census ACS5 data by GEOID\/block group to CSV in R"},"content":{"rendered":"\n<p>See prior posts for a list of variables<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>write.csv(get_acs(\n          geography = \"block group\",\n          variables = \"C02003_001\",\n          state = \"PA\",\n          year = 2020\n      ), \"C:\\\\Users\\\\gary\\\\pa-justice-maps-sheets\\\\scraping\\\\C02003_001.csv\", row.names=FALSE)<\/code><\/pre>\n\n\n\n<p>Or as a function of the variable name,<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>download_data &lt;- function(varname) {\n    write.csv(get_acs(\n        geography = \"block group\",\n        variables = varname,\n        state = \"PA\",\n        year = 2020\n    ), paste(\"C:\\\\Users\\\\gary\\\\pa-justice-maps-sheets\\\\scraping\\\\\", varname, \".csv\"), row.names=FALSE)\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>See prior posts for a list of variables Or as a function of the variable name,<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[1],"tags":[659,450],"aioseo_notices":[],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/6805"}],"collection":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/comments?post=6805"}],"version-history":[{"count":3,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/6805\/revisions"}],"predecessor-version":[{"id":6809,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/6805\/revisions\/6809"}],"wp:attachment":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/media?parent=6805"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/categories?post=6805"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/tags?post=6805"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}