<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>How We Know Us</title>
	
	<link>http://www.howweknowus.com</link>
	<description>Investigating, discussing, and measuring social capital</description>
	<lastBuildDate>Mon, 12 Dec 2011 21:10:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/hwku" /><feedburner:info uri="hwku" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Maximizing Cliques</title>
		<link>http://feedproxy.google.com/~r/hwku/~3/u3I60szIBio/</link>
		<comments>http://www.howweknowus.com/2011/12/11/maximizing-cliques/#comments</comments>
		<pubDate>Sun, 11 Dec 2011 17:50:00 +0000</pubDate>
		<dc:creator>erich</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[igraph]]></category>
		<category><![CDATA[R]]></category>

		<guid isPermaLink="false">http://www.howweknowus.com/?p=857</guid>
		<description><![CDATA[Finding largest cliques (completely connected sub-graph components) is hard. The best algorithms have run times proportional to 3^(#nodes/3). Triple the nodes = nine times the run length. So what&#8217;s a guy without a supercomputer to do but start looking for shortcuts? Shortcut 1: Maximize for your goals My interest is in characterizing a network, in [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.faculty.ucr.edu/~hanneman/nettext/C11_Cliques.html"><img class="alignright size-medium wp-image-880" title="Figure11_2" src="http://www.howweknowus.com/wp-content/uploads/2011/12/Figure11_2-297x300.jpg" alt="" width="297" height="300" /></a>Finding largest cliques (completely connected sub-graph components) is hard. The best algorithms have run times proportional to <em>3^(#nodes/3)</em>. Triple the nodes = nine times the run length. So what&#8217;s a guy without a supercomputer to do but start looking for shortcuts?</p>
<p><strong>Shortcut 1: Maximize for your goals</strong></p>
<p>My interest is in characterizing a network, in part, through largest clique size. Since the interest is in size, not quantity, I can start looking for cliques of size N+1 as soon as I find one of size N.</p>
<p><strong>Shortcut 2: Estimate</strong></p>
<p>I&#8217;m interested in specific types of networks, social networks. And we can tune for that through size estimation.</p>
<p>The networks I&#8217;ve run through my clique analysis are public (mailing lists, twitter feeds, etc) and generally demonstrate maximum clique size relative to number of active participants and independent of the time observed. I&#8217;ve looked at networks sampled for a week to complete observations of 10+ years of conversations.</p>
<p>I have only found once case where the maximum clique size was smaller than <em>ln(# nodes)/2</em> for these directed networks. When artificially forcing them to undirected networks, the maximum clique size is around double.</p>
<p><strong>Shortcut 3: Cleanse the Data</strong></p>
<p>Now that I have estimated size, every node with fewer edges can be ignored. With that amounting to around <em>(1-1/n)%</em>, for <em>n</em> less than the estimated size, we can cut down the search space.</p>
<p><strong>Shortcut 4: Order your Data</strong></p>
<p>With looking for the largest clique, the more links a node has, the more likely it&#8217;s a member of that clique.  So, when you are selecting which nodes to start with, start with the ones with most links.  The sooner you locate larger cliques, the sooner you can stop looking for smaller ones.</p>
<p><strong>Results</strong></p>
<p><strong></strong>Here&#8217;s where the &#8220;laptop test&#8221; comes in: using just a subset of the above, I was able to locate 9-member cliques in an undirected 2,000-node 5,500-edge network in under 5 seconds.  By comparison, on the same machine, it took 5 minutes to locate them using the igraph library in R.</p>
<p>R&#8217;s igraph, sadly, ignores edge direction in locating cliques.  But, a run of the above using my code with edge direction completed in about 0.5 seconds.</p>
<p>As an example for larger graphs, I located 15-member cliques in an undirected 75,000-node 220,000-edge network in 20 hours.  R topped out in memory before reaching this size network, and was unable to complete.</p>
<p><em>Update: It&#8217;s been pointed out to me that this has scaled pretty close to n^3.</em></p>
<img src="http://feeds.feedburner.com/~r/hwku/~4/u3I60szIBio" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.howweknowus.com/2011/12/11/maximizing-cliques/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.howweknowus.com/2011/12/11/maximizing-cliques/</feedburner:origLink></item>
		<item>
		<title>How I Stopped Worrying About Visualizing Networks – 1.5 Billion Edges</title>
		<link>http://feedproxy.google.com/~r/hwku/~3/3Gaj1Nd6r1I/</link>
		<comments>http://www.howweknowus.com/2011/11/18/how-i-stopped-worrying-about-visualizing-networks-1-5-billion-edges/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 00:00:17 +0000</pubDate>
		<dc:creator>erich</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.howweknowus.com/?p=811</guid>
		<description><![CDATA[&#160; How I Stopped Worrying About Network Visualization (PDF)]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: center;"><a href="http://www.howweknowus.com/wp-content/uploads/2011/11/img0.png"><img class="size-full wp-image-812 aligncenter" title="img0" src="http://www.howweknowus.com/wp-content/uploads/2011/11/img0.png" alt="" width="576" height="432" /><span id="more-811"></span></a><a href="http://www.howweknowus.com/wp-content/uploads/2011/11/img1.png"><img class="size-full wp-image-813 aligncenter" title="img1" src="http://www.howweknowus.com/wp-content/uploads/2011/11/img1.png" alt="" width="576" height="432" /></a></p>
<p style="text-align: center;"><a href="http://www.howweknowus.com/wp-content/uploads/2011/11/img2.png"><img class="aligncenter size-full wp-image-814" title="img2" src="http://www.howweknowus.com/wp-content/uploads/2011/11/img2.png" alt="" width="576" height="432" /></a><a href="http://www.howweknowus.com/wp-content/uploads/2011/11/img3.png"><img class="aligncenter size-full wp-image-815" title="img3" src="http://www.howweknowus.com/wp-content/uploads/2011/11/img3.png" alt="" width="576" height="432" /></a></p>
<p style="text-align: center;"><a href="http://www.howweknowus.com/wp-content/uploads/2011/11/img4.png"><img class="aligncenter size-full wp-image-816" title="img4" src="http://www.howweknowus.com/wp-content/uploads/2011/11/img4.png" alt="" width="576" height="432" /></a><a href="http://www.howweknowus.com/wp-content/uploads/2011/11/img5.png"><img class="aligncenter size-full wp-image-817" title="img5" src="http://www.howweknowus.com/wp-content/uploads/2011/11/img5.png" alt="" width="576" height="432" /></a></p>
<p style="text-align: center;"><a href="http://www.howweknowus.com/wp-content/uploads/2011/11/img6.png"><img class="aligncenter size-full wp-image-818" title="img6" src="http://www.howweknowus.com/wp-content/uploads/2011/11/img6.png" alt="" width="576" height="432" /></a></p>
<p style="text-align: center;"><a href="http://www.howweknowus.com/wp-content/uploads/2011/11/img7.png"><img class="aligncenter size-full wp-image-819" title="img7" src="http://www.howweknowus.com/wp-content/uploads/2011/11/img7.png" alt="" width="576" height="432" /></a></p>
<p style="text-align: center;"><a href="http://www.howweknowus.com/wp-content/uploads/2011/11/img8.png"><img class="aligncenter size-full wp-image-820" title="img8" src="http://www.howweknowus.com/wp-content/uploads/2011/11/img8.png" alt="" width="576" height="432" /></a></p>
<p style="text-align: center;"><a href="http://www.howweknowus.com/wp-content/uploads/2011/11/img9.png"><img class="aligncenter size-full wp-image-821" title="img9" src="http://www.howweknowus.com/wp-content/uploads/2011/11/img9.png" alt="" width="576" height="432" /></a></p>
<p style="text-align: center;"><a href="http://www.howweknowus.com/wp-content/uploads/2011/11/img10.png"><img class="aligncenter size-full wp-image-822" title="img10" src="http://www.howweknowus.com/wp-content/uploads/2011/11/img10.png" alt="" width="576" height="432" /></a></p>
<p>&nbsp;</p>
<p><a href="http://www.howweknowus.com/wp-content/uploads/2011/11/compression.pdf">How I Stopped Worrying About Network Visualization (PDF)</a></p>
<img src="http://feeds.feedburner.com/~r/hwku/~4/3Gaj1Nd6r1I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.howweknowus.com/2011/11/18/how-i-stopped-worrying-about-visualizing-networks-1-5-billion-edges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.howweknowus.com/2011/11/18/how-i-stopped-worrying-about-visualizing-networks-1-5-billion-edges/</feedburner:origLink></item>
		<item>
		<title>Brand Conversations and Stock Performance</title>
		<link>http://feedproxy.google.com/~r/hwku/~3/I3TlZkYQKiQ/</link>
		<comments>http://www.howweknowus.com/2011/11/07/brand-conversations-and-stock-performance/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 23:01:56 +0000</pubDate>
		<dc:creator>erich</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Sales and Marketing]]></category>

		<guid isPermaLink="false">http://www.howweknowus.com/?p=792</guid>
		<description><![CDATA[About a year ago, we comparatively visualized conversations between two competitive brands of major sport apparel companies.  The network of communications of Brand A showed better potential characteristics for healthy and robust interaction. One year later, and more than 1,000,000 people talking about each brand, what do we see? Several million conversations later, we still see a deeply [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>About a year ago, we comparatively <a title="Comparing Online Brand Conversations (Sports Apparel)" href="http://www.howweknowus.com/2010/10/01/comparing-online-brand-conversations-sports-apparel/">visualized conversations between two competitive brands</a> of major sport apparel companies.  The network of communications of Brand A showed better potential characteristics for healthy and robust interaction.</p>
<p>One year later, and more than 1,000,000 people talking about each brand, what do we see?</p>
<div id="attachment_793" class="wp-caption alignright" style="width: 180px">
	<a href="http://www.howweknowus.com/wp-content/uploads/2011/11/brandA.png"><img class="size-medium wp-image-793 " title="Brand A" src="http://www.howweknowus.com/wp-content/uploads/2011/11/brandA-300x300.png" alt="" width="180" height="180" /></a>
	<p class="wp-caption-text">Brand A (one year later)</p>
</div>
<div id="attachment_709" class="wp-caption alignleft" style="width: 180px">
	<a href="http://www.howweknowus.com/wp-content/uploads/2010/09/brandA.png"><img class="size-medium wp-image-709 " title="brandA" src="http://www.howweknowus.com/wp-content/uploads/2010/09/brandA-300x300.png" alt="" width="180" height="180" /></a>
	<p class="wp-caption-text">Brand A</p>
</div>
<p>Several million conversations later, we still see a deeply interconnected pattern of communication in Brand A.  The large number of clusters are still visible, but the interconnections are less clearly visible.  Let&#8217;s compare with Brand B:</p>
<div id="attachment_710" class="wp-caption alignleft" style="width: 180px">
	<a href="http://www.howweknowus.com/wp-content/uploads/2010/09/brandB.png"><img class="size-medium wp-image-710 " title="brandB" src="http://www.howweknowus.com/wp-content/uploads/2010/09/brandB-300x300.png" alt="" width="180" height="180" /></a>
	<p class="wp-caption-text">Brand B</p>
</div>
<div id="attachment_794" class="wp-caption alignright" style="width: 180px">
	<a href="http://www.howweknowus.com/wp-content/uploads/2011/11/brandB.png"><img class="size-medium wp-image-794 " title="Brand B" src="http://www.howweknowus.com/wp-content/uploads/2011/11/brandB-300x300.png" alt="" width="180" height="180" /></a>
	<p class="wp-caption-text">Brand B (one year later)</p>
</div>
<p>Brand B began with fewer, more centralized, clusters of conversation, and less &#8220;cross talk&#8221; between them.</p>
<p>Again, several million conversations later, it has evolved to a larger version of what we saw before.  While there are more distinct clusters one year later in Brand B than Brand A, each of those clusters receives less input from others.  Visually, we see this distinction by the are of fewer &#8220;clear&#8221; clusters toward center of the later graph of Brand A. In other words, should something great happen, the network of communications in Brand A would foster faster and more reinforcing communication.  If you&#8217;re a marketer, that&#8217;s what you want.</p>
<p>So, what&#8217;s the difference in stock performance over the past year?  Brand A outperformed B by about 30%.</p>
<img src="http://feeds.feedburner.com/~r/hwku/~4/I3TlZkYQKiQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.howweknowus.com/2011/11/07/brand-conversations-and-stock-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.howweknowus.com/2011/11/07/brand-conversations-and-stock-performance/</feedburner:origLink></item>
		<item>
		<title>Gov Palin’s Email Network (new visualization)</title>
		<link>http://feedproxy.google.com/~r/hwku/~3/p-D1OgXXe2c/</link>
		<comments>http://www.howweknowus.com/2011/06/21/gov-palins-email-network-new-visualization/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 15:49:47 +0000</pubDate>
		<dc:creator>erich</dc:creator>
				<category><![CDATA[Requests]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.howweknowus.com/?p=761</guid>
		<description><![CDATA[Cleaned up the data a little, and created a new visualization to better demonstrate the split between the two connected clusters.  The center of the smaller one is a Gov Palin email address that has the &#8220;Gov Sponsored&#8221; qualifier. It looks like this email address was used for her constituents to get in touch with her. [huge [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://howweknowus.com/wp-content/uploads/2011/06/palin-circle.jpg"><img class="alignnone" src="http://howweknowus.com/wp-content/uploads/2011/06/palin-circle-1024x1024.jpg" alt="" width="500" height="250" /></a></p>
<p>Cleaned up the data a little, and created a new visualization to better demonstrate the split between the two connected clusters.  The center of the smaller one is a Gov Palin email address that has the &#8220;Gov Sponsored&#8221; qualifier.</p>
<p>It looks like this email address was used for her constituents to get in touch with her.</p>
<p>[<a href="http://howweknowus.com/wp-content/uploads/2011/06/palin-circle.jpg">huge semi-readable image</a>, by request for @kev97. Regular big <a href="http://howweknowus.com/wp-content/uploads/2011/06/palin-circle-1024x1024.jpg">here</a>.]</p>
<img src="http://feeds.feedburner.com/~r/hwku/~4/p-D1OgXXe2c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.howweknowus.com/2011/06/21/gov-palins-email-network-new-visualization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.howweknowus.com/2011/06/21/gov-palins-email-network-new-visualization/</feedburner:origLink></item>
		<item>
		<title>Palin’s Email Network</title>
		<link>http://feedproxy.google.com/~r/hwku/~3/eXwdEj2S700/</link>
		<comments>http://www.howweknowus.com/2011/06/15/palins-email-network/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 21:24:57 +0000</pubDate>
		<dc:creator>erich</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://www.howweknowus.com/?p=751</guid>
		<description><![CDATA[Lots of cleanup left to do in the code parsing/cleaning up the emails, but here&#8217;s a first pass.  Seems like at least two connected networks, and surprisingly both the yahoo and the Gov&#8217;t email addresses are both in the larger one.  I wonder what the smaller one comprises of? A very big thanks to the [...]]]></description>
			<content:encoded><![CDATA[<p></p><div id="attachment_752" class="wp-caption alignnone" style="width: 300px">
	<a href="http://www.howweknowus.com/wp-content/uploads/2011/06/palin.png"><img class="size-medium wp-image-752 " title="Gov Palin's Email Network" src="http://www.howweknowus.com/wp-content/uploads/2011/06/palin-300x167.png" alt="" width="300" height="167" /></a>
	<p class="wp-caption-text">Gov Palin&#39;s Email Network (click for larger version)</p>
</div>
<p>Lots of cleanup left to do in the code parsing/cleaning up the emails, but here&#8217;s a first pass.  Seems like at least two connected networks, and surprisingly both the yahoo and the Gov&#8217;t email addresses are both in the larger one.  I wonder what the smaller one comprises of?</p>
<p>A very big thanks to the folks over at<a href="http://sunlightfoundation.com/"> Sunlight Foundation</a> for the data.</p>
<img src="http://feeds.feedburner.com/~r/hwku/~4/eXwdEj2S700" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.howweknowus.com/2011/06/15/palins-email-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.howweknowus.com/2011/06/15/palins-email-network/</feedburner:origLink></item>
		<item>
		<title>Visualizing Conversation Clusters on Twitter</title>
		<link>http://feedproxy.google.com/~r/hwku/~3/jM3WA6fPAMU/</link>
		<comments>http://www.howweknowus.com/2010/10/11/visualizing-conversation-clusters-on-twitter/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 00:09:45 +0000</pubDate>
		<dc:creator>erich</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://www.howweknowus.com/?p=740</guid>
		<description><![CDATA[2.5 million tweeters having 11 million conversations.  Pay attention to the clustering. Song: Dance on Vaseline (Thievery Corporation Remix) by David Byrne (YouTube link here)]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: center;">2.5 million tweeters having 11 million conversations.  Pay attention to the clustering.</p>
<p style="text-align: center;"><object style="width: 480px; height: 360px;" classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="480" height="360" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"><param name="autoplay" value="false" /><param name="cache" value="true" /><param name="src" value="http://howweknowus.com/wp-content/uploads/2010/10/Twitter-Small.m4v" /><embed style="width: 480px; height: 360px;" type="video/quicktime" width="480" height="360" src="http://howweknowus.com/wp-content/uploads/2010/10/Twitter-Small.m4v" cache="true" autoplay="false"></embed></object></p>
<p style="text-align: center;">Song: <a title="Dance on Vaseline (Thievery Corporation Remix) by David Byrne" href="http://www.amazon.com/Abductions-Reconstructions-Thievery-Corporation/dp/B00000IMVB" target="_blank">Dance on Vaseline (Thievery Corporation Remix) by David Byrne</a></p>
<p>(YouTube link <a href="http://www.youtube.com/watch?v=B_vLrWMruI0">here</a>)</p>
<img src="http://feeds.feedburner.com/~r/hwku/~4/jM3WA6fPAMU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.howweknowus.com/2010/10/11/visualizing-conversation-clusters-on-twitter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>

		<feedburner:origLink>http://www.howweknowus.com/2010/10/11/visualizing-conversation-clusters-on-twitter/</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/hwku/~5/md7Kbyj6OII/Twitter-Small.m4v" length="17340428" type="video/mp4" /><feedburner:origEnclosureLink>http://howweknowus.com/wp-content/uploads/2010/10/Twitter-Small.m4v</feedburner:origEnclosureLink></item>
		<item>
		<title>Comparing Online Brand Conversations (Sports Apparel)</title>
		<link>http://feedproxy.google.com/~r/hwku/~3/rQNdh9hVtfY/</link>
		<comments>http://www.howweknowus.com/2010/10/01/comparing-online-brand-conversations-sports-apparel/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 16:35:19 +0000</pubDate>
		<dc:creator>erich</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Sales and Marketing]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[conversation]]></category>

		<guid isPermaLink="false">http://www.howweknowus.com/?p=708</guid>
		<description><![CDATA[Over a long enough period of time, maps of who is talking with whom mostly look the same.  Many conversations start to overlap with each other, and eventually you see a large central core and any number of outliers. However if you look over short enough periods, you can see patterns of how those conversations [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Over a long enough period of time, maps of who is talking with whom mostly look the same.  Many conversations start to overlap with each other, and eventually you see a large <a title="central core" href="http://www.howweknowus.com/2008/12/30/beautiful-beautiful-data/" target="_blank">central core</a> and any number of <a title="outliers" href="http://www.howweknowus.com/2008/09/04/implied-social-networks-people-in-the-news-with-rankings/" target="_blank">outliers</a>.</p>
<p>However if you look over short enough periods, you can see patterns of how those conversations start to merge.  And, you can tell a lot.  Easily.</p>
<div id="attachment_709" class="wp-caption alignleft" style="width: 150px">
	<a href="http://www.howweknowus.com/wp-content/uploads/2010/09/brandA.png"><img class="size-thumbnail wp-image-709 " title="brandA" src="http://www.howweknowus.com/wp-content/uploads/2010/09/brandA-e1285785127463-150x150.png" alt="" width="150" height="150" /></a>
	<p class="wp-caption-text">Brand A</p>
</div>
<div id="attachment_710" class="wp-caption alignright" style="width: 150px">
	<a href="http://www.howweknowus.com/wp-content/uploads/2010/09/brandB.png"><img class="size-thumbnail wp-image-710 " title="brandB" src="http://www.howweknowus.com/wp-content/uploads/2010/09/brandB-e1285785189736-150x150.png" alt="" width="150" height="150" /></a>
	<p class="wp-caption-text">Brand B</p>
</div>
<p>Here we have a mapping of conversation partners mentioning two of the top sports apparel manufacturers, measured over the same period. Compare the shapes of Brand A (on left) to Brand B.</p>
<p>Brand B (on right) has a few larger clusters of conversation, lightly linked together by a few individuals participating in a number of the conversations.</p>
<p>Brand A has a lot of smaller conversations, interspersed with a handful of larger dense clusters; all webbed together in wide mesh.</p>
<p>So which is better?</p>
<p><span id="more-708"></span>Well, better for what?  That&#8217;s the $64,000 question in social analytics.  You need a goal, but hopefully that&#8217;s why you started looking for metrics in the first place.  Right?</p>
<p>That&#8217;s not necessarily true.  There&#8217;s a lot already baked into the question.  These two brands and their products are in direct competition.</p>
<p>Brand A has a much stronger network of communication, in both breadth and quantity of conversation clusters.  There are also a large number of small, non-connected conversations in the blue fringes that may be pulled into the core over time.  That means there&#8217;s more to keep track of, but likely a stable set of opinions.  Opinions will not likely change without introducing something substantively new, as information flows between the clusters fairly freely. This network displays characteristics of healthy and robust interaction.</p>
<p>Brand B, even excepting a significantly smaller quantity of conversation clusters, is heavily based on a few conversation clusters connected through a small number of individuals.  This indicates a fragility and possibly wider variance in opinion within the overall set of conversations.  In this structure, information will flow between clusters more slowly.  The second element Brand B is missing is depth of field in potential new recruits.  Brand A has quite a few blue conversations in the periphery with potential to join the core.  Brand B has very few.  I&#8217;d rather not be representing Brand B.</p>
<img src="http://feeds.feedburner.com/~r/hwku/~4/rQNdh9hVtfY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.howweknowus.com/2010/10/01/comparing-online-brand-conversations-sports-apparel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.howweknowus.com/2010/10/01/comparing-online-brand-conversations-sports-apparel/</feedburner:origLink></item>
		<item>
		<title>Relationships Behind Chicago’s Bid for the Olympics</title>
		<link>http://feedproxy.google.com/~r/hwku/~3/0HBG9JIb8WE/</link>
		<comments>http://www.howweknowus.com/2009/10/03/relationships-behind-chicagos-bid-for-the-olympics/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 21:56:38 +0000</pubDate>
		<dc:creator>erich</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[socialnetworks]]></category>

		<guid isPermaLink="false">http://www.howweknowus.com/?p=702</guid>
		<description><![CDATA[The two clusters in the core are roughly split into Democrats (l) and Republicans (r). Built from data by LittleSis.org.  As always, click for larger image.]]></description>
			<content:encoded><![CDATA[<p></p><p>The two clusters in the core are roughly split into Democrats (l) and Republicans (r).</p>
<div id="attachment_703" class="wp-caption aligncenter" style="width: 300px">
	<a href="http://www.howweknowus.com/wp-content/uploads/2009/10/ChicagoOlympics-small.jpg"><img class="size-medium wp-image-703" title="Chicago Olympics Bid" src="http://www.howweknowus.com/wp-content/uploads/2009/10/ChicagoOlympics-small-300x299.jpg" alt="Chicago Olympics Bid" width="300" height="299" /></a>
	<p class="wp-caption-text">Chicago Olympics Bid</p>
</div>
<p>Built from <a href="http://littlesis.org/org/42343/Chicago_2016_Committee">data</a> by <a href="http://www.littlesis.org">LittleSis.org</a>.  As always, click for larger image.</p>
<img src="http://feeds.feedburner.com/~r/hwku/~4/0HBG9JIb8WE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.howweknowus.com/2009/10/03/relationships-behind-chicagos-bid-for-the-olympics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.howweknowus.com/2009/10/03/relationships-behind-chicagos-bid-for-the-olympics/</feedburner:origLink></item>
		<item>
		<title>Health Care Leans Republican</title>
		<link>http://feedproxy.google.com/~r/hwku/~3/bTiOG6tV6cc/</link>
		<comments>http://www.howweknowus.com/2009/09/22/health-care-leans-republican/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 21:31:14 +0000</pubDate>
		<dc:creator>erich</dc:creator>
				<category><![CDATA[Requests]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[healthcare]]></category>
		<category><![CDATA[influence]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[socialnetworks]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://www.howweknowus.com/?p=688</guid>
		<description><![CDATA[3.6-times as many former congressional staffers turned health care lobbyists and their immediate connections have network ties closer to former President Bush, than to current President Obama. The connections in the network map shown below, and used for the analysis above, include people and organizations (e.g. corporate, not-for-profit, public, etc.) the people have been identified [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>3.6-times as many former congressional staffers turned health care lobbyists and their immediate connections have network ties closer to former President Bush, than to current President Obama.</p>
<p><a href="http://www.howweknowus.com/wp-content/uploads/2009/09/distances.png"><img class="aligncenter size-full wp-image-684" title="distances" src="http://www.howweknowus.com/wp-content/uploads/2009/09/distances.png" alt="distances" width="416" height="406" /></a></p>
<p>The connections in the network map shown below, and used for the analysis above, include people and organizations (e.g. corporate, not-for-profit, public, etc.) the people have been identified with.</p>
<p>Other trivia:<span id="more-688"></span></p>
<ul>
<li>53% have equidistant path lengths between both Obama and Bush</li>
<li>All are 0.45 links closer to Bush, on average</li>
<li>Minimum distance of 6 in distance to Obama + to Bush</li>
<li>Maximum difference of 4 in path lengths to Obama compared with to Bush</li>
</ul>
<p>Expanding on the earlier <a href="http://www.howweknowus.com/2009/08/11/best-networked-healthcare-lobbyists/">network</a> <a href="http://www.howweknowus.com/2009/08/11/health-care-lobbyists-part-deux/">visualization</a> of these new health care lobbyists, I have updated the network graph to the 500 identified by <a href="http://littlesis.org/list/35/HCIU_Congressional_staffers_turned_healthcare_lobbyists">LittleSis.org</a>.</p>
<p style="text-align: left;"><a href="http://www.howweknowus.com/wp-content/uploads/2009/09/lobbyists.jpg"><img class="size-medium wp-image-686 aligncenter" title="healthcare lobbyists" src="http://www.howweknowus.com/wp-content/uploads/2009/09/lobbyists-297x300.jpg" alt="healthcare lobbyists" width="297" height="300" /></a></p>
<p style="text-align: left;">The two easily identified clusters are close to Obama (lower left) and Bush (upper right).  Red dots are former staffers from the LittleSis.org list, and hollow dots are their other relationships.</p>
<p style="text-align: left;">And, not surprisingly the relationship distribution follows a power-law.  Or, as indicated in <a href="http://www.howweknowus.com/wp-content/uploads/2009/09/relationships.png">this log-scale histogram</a>, a Poisson distribution.</p>
<p style="text-align: left;">
<p style="text-align: left;">
<img src="http://feeds.feedburner.com/~r/hwku/~4/bTiOG6tV6cc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.howweknowus.com/2009/09/22/health-care-leans-republican/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.howweknowus.com/2009/09/22/health-care-leans-republican/</feedburner:origLink></item>
		<item>
		<title>Mathematicians Do It Randomly</title>
		<link>http://feedproxy.google.com/~r/hwku/~3/XbzVZLkQZtQ/</link>
		<comments>http://www.howweknowus.com/2009/09/08/mathematicians-do-it-randomly/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 18:52:03 +0000</pubDate>
		<dc:creator>erich</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[academics]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[socialnetworks]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://www.howweknowus.com/?p=660</guid>
		<description><![CDATA[What it look like if you took all of the Mathematics articles from JSTOR, the digital journal archive, and mapped co-authorship of the papers? It would look something like this.  Interesting to note, that while the distribution does hold to the small world network distribution exponent, there&#8217;s some &#8220;peakiness&#8221; about it that may suggest it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>What it look like if you took all of the Mathematics articles from <a href="http://www.jstor.org/page/info/about/archives/collections.jsp">JSTOR</a>, the digital journal archive, and mapped co-authorship of the papers? It would look something like <a href="http://www.howweknowus.com/wp-content/uploads/2009/09/mathematics.lgl.png">this</a>.  Interesting to note, that while the <a href="http://www.howweknowus.com/wp-content/uploads/2009/09/mathematics.distribution.png">distribution</a> does hold to the small world network distribution exponent, there&#8217;s some &#8220;peakiness&#8221; about it that may suggest it&#8217;s not really one network, but the merging of several.  Given the role of mathematics on so many other subjects, that would not be a surprise.</p>
<div id="attachment_663" class="wp-caption aligncenter" style="width: 300px">
	<a href="http://www.howweknowus.com/wp-content/uploads/2009/09/Mathematics.largest.jpg"><img class="size-medium wp-image-663" title="JSTOR Mathematics Authors" src="http://www.howweknowus.com/wp-content/uploads/2009/09/Mathematics.largest-300x179.jpg" alt="JSTOR Mathematics Authors" width="300" height="179" /></a>
	<p class="wp-caption-text">Largest cluster of co-authorship</p>
</div>
<p style="text-align: left;">Zoomable image with names, after the jump.</p>
<p style="text-align: center;"><span id="more-660"></span> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="400" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="theMovie" /><param name="flashvars" value="zoomifyImagePath=/wp-content/uploads/2009/09/Mathematics/Mathematics.jstor" /><param name="src" value="/wp-content/uploads/2009/09/Mathematics/ZoomifyViewer.swf" /><embed type="application/x-shockwave-flash" width="600" height="400" src="/wp-content/uploads/2009/09/Mathematics/ZoomifyViewer.swf" flashvars="zoomifyImagePath=/wp-content/uploads/2009/09/Mathematics/Mathematics.jstor" name="theMovie"></embed></object></p>
<p style="text-align: left;"><span style="color: #888888;">[typo in JSTOR name fixed 2010-09-30]</span></p>
<img src="http://feeds.feedburner.com/~r/hwku/~4/XbzVZLkQZtQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.howweknowus.com/2009/09/08/mathematicians-do-it-randomly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.howweknowus.com/2009/09/08/mathematicians-do-it-randomly/</feedburner:origLink></item>
	</channel>
</rss>

