<div dir="ltr">I think that you are correct here. The Census outlines this here:<div><br></div><div><a href="https://www.census.gov/programs-surveys/acs/guidance/estimates.html">https://www.census.gov/programs-surveys/acs/guidance/estimates.html</a><br></div><div><br></div><div>It looks like the rule of thumb is that 1 year estimates are provided for geographies which only have over 65,000 people. However, most tracts only have around 4,000 people.</div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 2, 2018 at 4:23 PM, Ricardo Ramirez <span dir="ltr">&lt;<a href="mailto:rgramirez@att.net" target="_blank">rgramirez@att.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>I didn&#39;t think tract level data were available for the 1-year, only for the 5-year.<div><br></div><div>Ricardo</div><br><br>-------- Original message --------<br>From: <a href="mailto:acs-r-request@mit.edu" target="_blank">acs-r-request@mit.edu</a> <br>Date: 03/02/2018  11:01 AM  (GMT-06:00) <br>To: <a href="mailto:acs-r@mit.edu" target="_blank">acs-r@mit.edu</a> <br>Subject: acs-r Digest, Vol 43, Issue 2 <br><br>Send acs-r mailing list submissions to<br>        <a href="mailto:acs-r@mit.edu" target="_blank">acs-r@mit.edu</a><br><br>To subscribe or unsubscribe via the World Wide Web, visit<br>        <a href="http://mailman.mit.edu/mailman/listinfo/acs-r" target="_blank">http://mailman.mit.edu/<wbr>mailman/listinfo/acs-r</a><br>or, via email, send a message with subject or body &#39;help&#39; to<br>        <a href="mailto:acs-r-request@mit.edu" target="_blank">acs-r-request@mit.edu</a><br><br>You can reach the person managing the list at<br>        <a href="mailto:acs-r-owner@mit.edu" target="_blank">acs-r-owner@mit.edu</a><br><br>When replying, please edit your Subject line so it is more specific<br>than &quot;Re: Contents of acs-r digest...&quot;<br><br><br>Today&#39;s Topics:<br><br>   1. Re: Error in downloading 2016 census data? (Ezra Haber Glenn)<br>   2. acs version 2.1.3: test-drive it now (Ezra Haber Glenn)<br>   3. acs package update / 2.1.3: 2016 5-year data fix<br>      (Ezra Haber Glenn)<br><br><br>------------------------------<wbr>------------------------------<wbr>----------<br><br>Message: 1<br>Date: Thu, 01 Mar 2018 12:05:31 -0500<br>From: Ezra Haber Glenn &lt;<a href="mailto:eglenn@mit.edu" target="_blank">eglenn@mit.edu</a>&gt;<br>Subject: Re: [acs-r] Error in downloading 2016 census data?<br>To: Jacob Coblentz &lt;<a href="mailto:coblentz@mit.edu" target="_blank">coblentz@mit.edu</a>&gt;<br>Cc: acs-r &lt;<a href="mailto:acs-r@mit.edu" target="_blank">acs-r@mit.edu</a>&gt;<br>Message-ID: &lt;<a href="mailto:86y3jbk9pg.wl-eglenn@mit.edu" target="_blank">86y3jbk9pg.wl-eglenn@mit.edu</a>&gt;<br>Content-Type: text/plain; charset=ISO-8859-7<br><br><br>PS: Is it also possible that the tract-level 2016/1year ACS data is<br>not available via the API (yet)?  See<br>&lt;<a href="https://api.census.gov/data/2016/acs/acs1/geography.html" target="_blank">https://api.census.gov/data/<wbr>2016/acs/acs1/geography.html</a>&gt;.<br><br>I am able to get state and county data for 2016/1yr, but not tract.<br><br>--Ezra<br><br>On Thu, 01 Mar 2018 10:23:51 -0500, Ezra Haber Glenn wrote:<br>&gt; <br>&gt; <br>&gt; Ugh.  Here&#39;s the deal, I think:<br>&gt; <br>&gt; It seems that the census folks have *once again* changed the format of<br>&gt; the ACS variable lookup code XML files, which is messing up the<br>&gt; package -- sorry about that.  (Each year has a different set of<br>&gt; variable code tables, so this problem only affects the latest one,<br>&gt; 2016.)<br>&gt; <br>&gt; Basically, at this point, the package needs to make all sorts of<br>&gt; little corrections for each different endyear/span combination.  I&#39;ll<br>&gt; try to troubleshoot and get it to work. <br>&gt; <br>&gt; In the meanwhile, here&#39;s a clever trick you can use to trick the<br>&gt; package to use the variable numbers from a previous year (which is<br>&gt; safe, unless the variable numbers change, which is pretty rare):<br>&gt; <br>&gt; # save a lookup from a year that works<br>&gt; a=acs.lookup(table.number = &quot;B02001&quot;, endyear=2015, span=5)<br>&gt; <br>&gt; # use this in your new fetch:<br>&gt; acs.fetch(geography = all_counties, variable=a, endyear=2016, span=5)<br>&gt; <br>&gt; <br>&gt; Ta-da!<br>&gt; <br>&gt; Let me know if that sort of thing works, or if you have more questions.<br>&gt; <br>&gt; <br>&gt; --Ezra<br>&gt; <br>&gt; <br>&gt; <br>&gt; On Thu, 01 Mar 2018 09:01:35 -0500, Jacob Coblentz wrote:<br>&gt; &gt; <br>&gt; &gt; [1  &lt;multipart/signed (7bit)&gt;]<br>&gt; &gt; [1.1  &lt;multipart/alternative (7bit)&gt;]<br>&gt; &gt; [1.1.1  &lt;text/plain; utf-8 (quoted-printable)&gt;]<br>&gt; &gt; [1.1.2  &lt;text/html; utf-8 (quoted-printable)&gt;]<br>&gt; &gt; require(acs)<br>&gt; &gt; api.key.install(key=my_key)<br>&gt; &gt; all_counties&lt;-geo.make(state=&quot;<wbr>*&quot;,county=&quot;*&quot;)<br>&gt; &gt; race_table&lt;-acs.fetch(endyear = 2016, span=1, geography = all_counties, table.number = &quot;B02001&quot;, col.names = &quot;pretty&quot;)<br>&gt; &gt; <br>&gt; &gt; Error in data.frame(variable.code = names, table.number = table.numbers,  : <br>&gt; &gt;   arguments imply differing number of rows: 3, 5<br>&gt; &gt; <br>&gt; &gt; What?s up with this error?<br>&gt; &gt; <br>&gt; &gt; <br>&gt; &gt; [1.2 smime.p7s &lt;application/pkcs7-signature (base64)&gt;]<br>&gt; &gt; Bad signature from BFFC03C590AF469434E317E8CFA9EE<wbr>5397231274 /CN=Jacob Coblentz/OU=Client CA v1/O=Massachusetts Institute of Technology/ST=Massachusetts/C=<wbr>US/EMail=<a href="mailto:coblentz@MIT.EDU" target="_blank">coblentz@MIT.EDU</a><br>&gt; &gt; [2  &lt;text/plain; us-ascii (7bit)&gt;]<br>&gt; &gt; ______________________________<wbr>_________________<br>&gt; &gt; acs-r mailing list<br>&gt; &gt; <a href="mailto:acs-r@mit.edu" target="_blank">acs-r@mit.edu</a><br>&gt; &gt; <a href="http://mailman.mit.edu/mailman/listinfo/acs-r" target="_blank">http://mailman.mit.edu/<wbr>mailman/listinfo/acs-r</a><br>&gt; <br>&gt; --<br>&gt; Ezra Haber Glenn, AICP<br>&gt; Department of Urban Studies and Planning<br>&gt; Massachusetts Institute of Technology<br>&gt; 77 Massachusetts Ave., Room 7-346<br>&gt; Cambridge, MA 02139<br>&gt; <a href="mailto:eglenn@mit.edu" target="_blank">eglenn@mit.edu</a> <br>&gt; <a href="http://dusp.mit.edu/faculty/ezra-glenn" target="_blank">http://dusp.mit.edu/faculty/<wbr>ezra-glenn</a><br>&gt; <a href="tel:(617)%20253-2024" value="+16172532024" target="_blank">617.253.2024</a> (w)<br>&gt; <a href="tel:(617)%20721-7131" value="+16177217131" target="_blank">617.721.7131</a> (c)<br>&gt; <br>&gt; ______________________________<wbr>_________________<br>&gt; acs-r mailing list<br>&gt; <a href="mailto:acs-r@mit.edu" target="_blank">acs-r@mit.edu</a><br>&gt; <a href="http://mailman.mit.edu/mailman/listinfo/acs-r" target="_blank">http://mailman.mit.edu/<wbr>mailman/listinfo/acs-r</a><br><br>--<br>Ezra Haber Glenn, AICP<br>Department of Urban Studies and Planning<br>Massachusetts Institute of Technology<br>77 Massachusetts Ave., Room 7-346<br>Cambridge, MA 02139<br><a href="mailto:eglenn@mit.edu" target="_blank">eglenn@mit.edu</a> <br><a href="http://dusp.mit.edu/faculty/ezra-glenn" target="_blank">http://dusp.mit.edu/faculty/<wbr>ezra-glenn</a><br><a href="tel:(617)%20253-2024" value="+16172532024" target="_blank">617.253.2024</a> (w)<br><a href="tel:(617)%20721-7131" value="+16177217131" target="_blank">617.721.7131</a> (c)<br><br><br><br>------------------------------<br><br>Message: 2<br>Date: Thu, 01 Mar 2018 16:14:03 -0500<br>From: Ezra Haber Glenn &lt;<a href="mailto:eglenn@mit.edu" target="_blank">eglenn@mit.edu</a>&gt;<br>Subject: [acs-r] acs version 2.1.3: test-drive it now<br>To: acs-r &lt;<a href="mailto:acs-r@mit.edu" target="_blank">acs-r@mit.edu</a>&gt;<br>Message-ID: &lt;<a href="mailto:86sh9jjy78.wl-eglenn@mit.edu" target="_blank">86sh9jjy78.wl-eglenn@mit.edu</a>&gt;<br>Content-Type: text/plain; charset=US-ASCII<br><br><br>Dear acs-r community:<br><br>In order to address some pesky issues related to fetching 2016 ACS<br>data and strange census XML variable tables, we&#39;ve update the package<br>with a quick patch.  As a special benefit to our loyal members of the<br>the acs.R mailing list (technically: as a way to recruit some<br>beta-testers), we are making available a special sneak-peak,<br>pre-release version for you to try out.<br><br>Pretty much everything should work the same --- no improvements, just<br>a patch to allow you to get 2016 data.<br><br>*** Downloading and installing<br><br>To install the updated version, simply fire up an R session and type:<br><br>&gt; install.packages(&quot;<a href="http://web.mit.edu/eglenn/www/acs/acs_2.1.3.tar.gz" target="_blank">http://web.<wbr>mit.edu/eglenn/www/acs/acs_2.<wbr>1.3.tar.gz</a>&quot;, <br>  clean=T, repos=NULL)<br>&gt; acs.tables.install()<br><br>If you prefer to download it first, you can grab it from<br>&lt;<a href="http://web.mit.edu/eglenn/www/acs/acs_2.1.3.tar.gz" target="_blank">http://web.mit.edu/eglenn/<wbr>www/acs/acs_2.1.3.tar.gz</a>&gt;.  After<br>downloading, you can install via the command line:<br><br><br>$ R CMD INSTALL acs_2.1.3.tar.gz --clean<br><br><br>or via an R session:<br><br><br>&gt; install.packages(pkgs=&quot;acs_2.<wbr>1.3.tar.gz&quot;, clean=T, repos=NULL)<br>&gt; acs.tables.install()<br><br>Don&#39;t forget to reinstall or &quot;api.key.migrate()&quot; your api key if it<br>doesn&#39;t seem to have been migrated during install.  I also strongly<br>recommend you run &quot;acs.tables.install()&quot; as well -- you only need to<br>do this once per installation (or update), and it will really speed up<br>the package.<br><br><br><br>** Please note: this fix is more of a &quot;workaround&quot; than a true fix:<br>   starting with the 2016 release, the Census Bureau changed the<br>   format for the XML variable lookup tables and calls to acs.lookup<br>   (and acs.fetch) were failing; the quick solution was to simply use<br>   the 2015 lookup tables for these requests, which should be safe in<br>   most situations, since table numbers and variable codes generally<br>   do not change from year to year.  (In some situations this<br>   assumption is not true: see<br>   <a href="https://www.census.gov/programs-surveys/acs/technical-documentation/table-and-geography-changes/2016/5-year.html" target="_blank">https://www.census.gov/<wbr>programs-surveys/acs/<wbr>technical-documentation/table-<wbr>and-geography-changes/2016/5-<wbr>year.html</a><br>   for details.)<br><br>--<br>Ezra Haber Glenn, AICP<br>Department of Urban Studies and Planning<br>Massachusetts Institute of Technology<br>77 Massachusetts Ave., Room 7-346<br>Cambridge, MA 02139<br><a href="mailto:eglenn@mit.edu" target="_blank">eglenn@mit.edu</a> <br><a href="http://dusp.mit.edu/faculty/ezra-glenn" target="_blank">http://dusp.mit.edu/faculty/<wbr>ezra-glenn</a><br><a href="tel:(617)%20253-2024" value="+16172532024" target="_blank">617.253.2024</a> (w)<br><a href="tel:(617)%20721-7131" value="+16177217131" target="_blank">617.721.7131</a> (c)<br><br><br>------------------------------<br><br>Message: 3<br>Date: Fri, 02 Mar 2018 11:32:54 -0500<br>From: Ezra Haber Glenn &lt;<a href="mailto:eglenn@mit.edu" target="_blank">eglenn@mit.edu</a>&gt;<br>Subject: [acs-r] acs package update / 2.1.3: 2016 5-year data fix<br>To: acs-r &lt;<a href="mailto:acs-r@mit.edu" target="_blank">acs-r@mit.edu</a>&gt;<br>Message-ID: &lt;<a href="mailto:861sh21lqh.wl-eglenn@mit.edu" target="_blank">861sh21lqh.wl-eglenn@mit.edu</a>&gt;<br>Content-Type: text/plain; charset=BIG5<br><br><br>Dear acs.R users:<br><br>In order to address some pesky issues related to fetching 2016 ACS<br>data, we&#39;ve updated the acs package with a quick patch. Pretty much<br>everything should work the same --- no improvements, no new features,<br>just a patch to allow you to get 2016 data.<br><br>Please note: this fix is more of a &quot;workaround&quot; than a true fix:<br>starting with the 2016 release, the Census Bureau changed the format<br>for the XML variable lookup tables and calls to acs.lookup (and<br>acs.fetch) were failing; the quick solution was to simply use the 2015<br>lookup tables for these requests, which should be safe in most<br>situations, since table numbers and variable codes generally do not<br>change from year to year. (In some situations this assumption is not<br>true: see ?acs.lookup and<br>&lt;<a href="https://www.census.gov/programs-surveys/acs/technical-documentation/table-and-geography-changes/2016/5-year.html" target="_blank">https://www.census.gov/<wbr>programs-surveys/acs/<wbr>technical-documentation/table-<wbr>and-geography-changes/2016/5-<wbr>year.html</a>&gt;<br>for details.)<br><br>No other aspects of the package were changed with this release. <br><br><br>** Downloading and installing<br><br>To install the updated version, simply fire up an R session and type:<br><br>&gt; install.packages(&quot;acs&quot;, clean=T)<br>&gt; acs.tables.install()<br><br>If you&#39;re updating from a previous version, don&#39;t forget to re-install<br>or &quot;api.key.migrate()&quot; your api key if it doesn&#39;t seem to have been<br>migrated during install. We also strongly recommend you run<br>&quot;acs.tables.install()&quot; as well ? you only need to do this once per<br>installation (or update), and it will really speed up the package.<br><br><br>Thanks for using the package, and please continue to let me know if<br>you notice any problems or odd behavior.<br><br>--Ezra<br><br>--<br>Ezra Haber Glenn, AICP<br>Department of Urban Studies and Planning<br>Massachusetts Institute of Technology<br>77 Massachusetts Ave., Room 7-346<br>Cambridge, MA 02139<br><a href="mailto:eglenn@mit.edu" target="_blank">eglenn@mit.edu</a> <br><a href="http://dusp.mit.edu/faculty/ezra-glenn" target="_blank">http://dusp.mit.edu/faculty/<wbr>ezra-glenn</a><br><a href="tel:(617)%20253-2024" value="+16172532024" target="_blank">617.253.2024</a> (w)<br><a href="tel:(617)%20721-7131" value="+16177217131" target="_blank">617.721.7131</a> (c)<br><br><br><br>------------------------------<br><br>______________________________<wbr>_________________<br>acs-r mailing list<br><a href="mailto:acs-r@mit.edu" target="_blank">acs-r@mit.edu</a><br><a href="http://mailman.mit.edu/mailman/listinfo/acs-r" target="_blank">http://mailman.mit.edu/<wbr>mailman/listinfo/acs-r</a><br><br><br>End of acs-r Digest, Vol 43, Issue 2<br>******************************<wbr>******<br></div><br>______________________________<wbr>_________________<br>
acs-r mailing list<br>
<a href="mailto:acs-r@mit.edu">acs-r@mit.edu</a><br>
<a href="http://mailman.mit.edu/mailman/listinfo/acs-r" rel="noreferrer" target="_blank">http://mailman.mit.edu/<wbr>mailman/listinfo/acs-r</a><br>
<br></blockquote></div><br></div></div>