<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:series="http://unfoldingneurons.com/"
		>
<channel>
	<title>Comments for Working With Data</title>
	<atom:link href="http://mazamascience.com/WorkingWithData/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://mazamascience.com/WorkingWithData</link>
	<description>Manning the helm during the data deluge.</description>
	<lastBuildDate>Thu, 09 Feb 2012 23:07:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Optimizing Data Access &#8212; Know your Hardware by enstavros</title>
		<link>http://mazamascience.com/WorkingWithData/?p=764#comment-284</link>
		<dc:creator>enstavros</dc:creator>
		<pubDate>Thu, 09 Feb 2012 23:07:15 +0000</pubDate>
		<guid isPermaLink="false">http://mazamascience.com/WorkingWithData/?p=764#comment-284</guid>
		<description>This is such a great article! Organization is key and I love the book analogy. From this article, I have created a checklist by which to organize my data for my research. I can especially appreciate the key point of massaging the data and working out any kinks as opposed to brute force ramping up the computational power behind it. Thanks for the tips!</description>
		<content:encoded><![CDATA[<p>This is such a great article! Organization is key and I love the book analogy. From this article, I have created a checklist by which to organize my data for my research. I can especially appreciate the key point of massaging the data and working out any kinks as opposed to brute force ramping up the computational power behind it. Thanks for the tips!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using R &#8212; Easier Error Handling with try() by pid controllers</title>
		<link>http://mazamascience.com/WorkingWithData/?p=929#comment-283</link>
		<dc:creator>pid controllers</dc:creator>
		<pubDate>Thu, 09 Feb 2012 19:43:22 +0000</pubDate>
		<guid isPermaLink="false">http://mazamascience.com/WorkingWithData/?p=929#comment-283</guid>
		<description>Thanks for finally writing about &gt; Using R - Easier Error Handling with try() &#124; Working With Data &lt; Liked it!</description>
		<content:encoded><![CDATA[<p>Thanks for finally writing about &gt; Using R &#8211; Easier Error Handling with try() | Working With Data &lt; Liked it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using R &#8212; Basic error Handing with tryCatch() by DavidC</title>
		<link>http://mazamascience.com/WorkingWithData/?p=912#comment-235</link>
		<dc:creator>DavidC</dc:creator>
		<pubDate>Wed, 07 Dec 2011 18:28:51 +0000</pubDate>
		<guid isPermaLink="false">http://mazamascience.com/WorkingWithData/?p=912#comment-235</guid>
		<description>This is nice, thanks. I think a lot of people using R (including me, until recently) don&#039;t have enough education/experience programming to be thinking about error-handling.</description>
		<content:encoded><![CDATA[<p>This is nice, thanks. I think a lot of people using R (including me, until recently) don&#8217;t have enough education/experience programming to be thinking about error-handling.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using R &#8212; Basic error Handing with tryCatch() by Songpants</title>
		<link>http://mazamascience.com/WorkingWithData/?p=912#comment-230</link>
		<dc:creator>Songpants</dc:creator>
		<pubDate>Wed, 07 Dec 2011 10:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://mazamascience.com/WorkingWithData/?p=912#comment-230</guid>
		<description>Great post!

Wish I would have had it when I tackled my first tryCatch() approaches and came back quite puzzled from the help page - glad to hear I&#039;m apparently not the only one that struggled with it ;-)

Best regards!</description>
		<content:encoded><![CDATA[<p>Great post!</p>
<p>Wish I would have had it when I tackled my first tryCatch() approaches and came back quite puzzled from the help page &#8211; glad to hear I&#8217;m apparently not the only one that struggled with it ;-)</p>
<p>Best regards!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Data Structures — Tabular vs. Relational by Jonathan Callahan</title>
		<link>http://mazamascience.com/WorkingWithData/?p=254#comment-12</link>
		<dc:creator>Jonathan Callahan</dc:creator>
		<pubDate>Fri, 16 Sep 2011 16:24:22 +0000</pubDate>
		<guid isPermaLink="false">http://mazamascience.com/blog/?p=254#comment-12</guid>
		<description>Klaus,

I&#039;m not entirely clear what you mean by perfect for duck typing but I&#039;m assuming that the building blocks you describe can be thought of as objects. The first thing that comes to mind is to use &lt;a href=http://en.wikipedia.org/wiki/List_of_object-relational_mapping_software rel=nofollow rel=&quot;nofollow&quot;&gt;Object Relational Mapping software&lt;/a&gt; to work with your objects as objects and let the ORM deal with storing them in an RDBMS.

Taking a step back, though, I have to ask how much data you can possibly have if each  row corresponds to a swimming pool maintenance visit. Can you possibly generate more than 100,000 visits per year? That&#039;s just not that much data unless you have truly voluminous metadata for each visit. Why not just have rows store as much of the metadata as possible in a single table and then have a very few related tables for the wordy metadata. As mentioned above, it&#039;s not against the law to store oft-repeated metadata in additional columns. You could store the whole thing in an SQLite database for easy deployment and maintenance.</description>
		<content:encoded><![CDATA[<p>Klaus,</p>
<p>I&#8217;m not entirely clear what you mean by perfect for duck typing but I&#8217;m assuming that the building blocks you describe can be thought of as objects. The first thing that comes to mind is to use <a href=http://en.wikipedia.org/wiki/List_of_object-relational_mapping_software rel=nofollow rel="nofollow">Object Relational Mapping software</a> to work with your objects as objects and let the ORM deal with storing them in an RDBMS.</p>
<p>Taking a step back, though, I have to ask how much data you can possibly have if each  row corresponds to a swimming pool maintenance visit. Can you possibly generate more than 100,000 visits per year? That&#8217;s just not that much data unless you have truly voluminous metadata for each visit. Why not just have rows store as much of the metadata as possible in a single table and then have a very few related tables for the wordy metadata. As mentioned above, it&#8217;s not against the law to store oft-repeated metadata in additional columns. You could store the whole thing in an SQLite database for easy deployment and maintenance.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

