<div dir="ltr">Thanks Mark.<div><br></div><div>I need to use zctas because I am creating a demo of my package which visualizes zctas in R (<a href="https://github.com/arilamstein/choroplethrZip">https://github.com/arilamstein/choroplethrZip</a>).</div><div><br></div><div>When I try to access 2013 data I get this warning:</div><div><br></div><div><div>library(acs)</div><div>zip_geo = geo.make(zip.code = &quot;*&quot;)</div><div>data = acs.fetch(geography=zip_geo, table.number = &quot;B03002&quot;, col.names = &quot;pretty&quot;, endyear = 2013, span = 5)</div></div><div><br></div><div><div>Warning messages:</div><div>1: In acs.fetch(geography = zip_geo, table.number = &quot;B03002&quot;, col.names = &quot;pretty&quot;,  :</div><div>  As of the date of this version of the acs package</div><div>  Census API did not provides data for selected endyear</div></div><div><br></div><div>Is this warning spurious?</div><div><br></div><div>Thanks.</div><div><br></div><div>Ari</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Apr 2, 2015 at 9:17 AM, Corrales, Mark <span dir="ltr">&lt;<a href="mailto:Corrales.Mark@epa.gov" target="_blank">Corrales.Mark@epa.gov</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
I would suggest using newer data (2009-2013 is available), and consider using tracts (or even block groups) instead of zip codes/ZCTAs because they are more stable over time and can be rolled up into county totals, etc.<br>
<br>
As to which table, you might consider table B03002, which in one table gives you all the counts you need, from which you can calculate percentages, for these eight race/ethnicity groups (which add up to the total population):<br>
<br>
Hispanic or Latino<br>
Not Hispanic or Latino: White alone<br>
Not Hispanic or Latino: Black or African American alone<br>
Not Hispanic or Latino: American Indian and Alaska Native alone<br>
Not Hispanic or Latino: Asian alone<br>
Not Hispanic or Latino: Native Hawaiian and Other Pacific Islander alone<br>
Not Hispanic or Latino: Some other race alone<br>
Not Hispanic or Latino: Two or more races<br>
<br>
Just divide the count by the Total shown in that same table.<br>
<br>
<a href="http://factfinder.census.gov/faces/affhelp/jsf/pages/metadata.xhtml?lang=en&amp;type=table&amp;id=table.en.ACS_13_5YR_B03002#" target="_blank">http://factfinder.census.gov/faces/affhelp/jsf/pages/metadata.xhtml?lang=en&amp;type=table&amp;id=table.en.ACS_13_5YR_B03002#</a><br>
<br>
<br>
<br>
-----Original Message-----<br>
From: <a href="mailto:acs-r-bounces@mit.edu">acs-r-bounces@mit.edu</a> [mailto:<a href="mailto:acs-r-bounces@mit.edu">acs-r-bounces@mit.edu</a>] On Behalf Of <a href="mailto:acs-r-request@mit.edu">acs-r-request@mit.edu</a><br>
Sent: Thursday, April 02, 2015 12:02 PM<br>
To: <a href="mailto:acs-r@mit.edu">acs-r@mit.edu</a><br>
Subject: acs-r Digest, Vol 15, Issue 1<br>
<br>
Send acs-r mailing list submissions to<br>
        <a href="mailto:acs-r@mit.edu">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/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">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">acs-r-owner@mit.edu</a><br>
<br>
When replying, please edit your Subject line so it is more specific than &quot;Re: Contents of acs-r digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. ACS tables that deal with race (<a href="mailto:arilamstein@gmail.com">arilamstein@gmail.com</a>)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Wed, 1 Apr 2015 16:35:53 -0700<br>
From: &lt;<a href="mailto:arilamstein@gmail.com">arilamstein@gmail.com</a>&gt;<br>
Subject: [acs-r] ACS tables that deal with race<br>
To: acs-r &lt;<a href="mailto:acs-r@mit.edu">acs-r@mit.edu</a>&gt;<br>
Message-ID:<br>
        &lt;CAEO2ku+owU0nFvgthQzm0SG_Rwun0xN8jhiMC=<a href="mailto:3miZkjbFMAhw@mail.gmail.com">3miZkjbFMAhw@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
<br>
Hello,<br>
<br>
I am a bit confused by the ACS tables that deal with race.  For reference, I am currently working with the 2011 5 year ACS tables which are listed here &lt;<a href="http://factfinder.census.gov/faces/affhelp/jsf/pages/metadata.xhtml?lang=en&amp;type=dataset&amp;id=dataset.en.ACS_11_5YR" target="_blank">http://factfinder.census.gov/faces/affhelp/jsf/pages/metadata.xhtml?lang=en&amp;type=dataset&amp;id=dataset.en.ACS_11_5YR</a>&gt;,<br>
<span class="">and I am trying to get data on ZCTAs. My goal is to create choropleth maps of San Francisco that show key demographic information.<br>
<br>
Table B02008 is listed as WHITE ALONE OR IN COMBINATION WITH ONE OR MORE OTHER RACES but it returns a count of people, not a percentage of the total population. There seem to be various &quot;G&quot; tables that give the percentage of people who are white alone (e.g. GCT0201), but a) none of those geographic units are ZCTAs and b) IIRC acs.r cannot retrieve tables that start with a G.<br>
<br>
Presumably I could just divide those numbers by the result of table B00001 (UNWEIGHTED SAMPLE COUNT OF THE POPULATION ) or B01003 (TOTAL POPULATION ), but I&#39;m not sure what the difference is between those two tables are. Can someone give me some pointers?<br>
<br>
Thanks.<br>
<br>
Ari<br>
</span>-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://mailman.mit.edu/pipermail/acs-r/attachments/20150401/81f00252/attachment-0001.htm" target="_blank">http://mailman.mit.edu/pipermail/acs-r/attachments/20150401/81f00252/attachment-0001.htm</a><br>
<br>
------------------------------<br>
<span class=""><br>
_______________________________________________<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" target="_blank">http://mailman.mit.edu/mailman/listinfo/acs-r</a><br>
<br>
<br>
</span>End of acs-r Digest, Vol 15, Issue 1<br>
************************************<br>
<div class="HOEnZb"><div class="h5"><br>
_______________________________________________<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" target="_blank">http://mailman.mit.edu/mailman/listinfo/acs-r</a><br>
</div></div></blockquote></div><br></div>