<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	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/"
	>

<channel>
	<title>Data is Beautiful</title>
	<atom:link href="/data/feed/" rel="self" type="application/rss+xml" />
	<link>https://talkera.org/data</link>
	<description>A place for visual representations of data: Graphs, charts, maps, etc.</description>
	<lastBuildDate>Wed, 31 Dec 2014 00:25:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1</generator>
	<item>
		<title>Reddit readers visualised using Python</title>
		<link>https://talkera.org/data/reddit-readers-visualised-using-python/</link>
		<comments>https://talkera.org/data/reddit-readers-visualised-using-python/#comments</comments>
		<pubDate>Wed, 31 Dec 2014 00:25:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[matplotlib]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">https://talkera.org/data/?p=28</guid>
		<description><![CDATA[We collected the number of readers from http://www.reddit.com/r/dataisbeautiful/ from 2012 to 2014 using the Wayback Machine.  We used Python and Matplotlib to produce this chart: The Python script we made below generates this graph. It puts the y-axis into a nice comma format. In addition, it adds the time series. [crayon-54ad4b67925f6163574114/] Raw data: [crayon-54ad4b6792607032032592/] &#160;]]></description>
				<content:encoded><![CDATA[<p>We collected the number of readers from <a href="http://www.reddit.com/r/dataisbeautiful/">http://www.reddit.com/r/dataisbeautiful/</a> from 2012 to 2014 using the Wayback Machine.  We used Python and Matplotlib to produce this chart:</p>
<div id="attachment_29" style="width: 1717px" class="wp-caption alignnone"><a href="/data/wp-content/uploads/2014/12/figure_1.png"><img class="wp-image-29 size-full" src="/data/wp-content/uploads/2014/12/figure_1.png" alt="Readers of /r/dataisbeautiful" width="1707" height="865" /></a><p class="wp-caption-text">Readers of /r/dataisbeautiful</p></div>
<p>The Python script we made below generates this graph. It puts the y-axis into a nice comma format. In addition, it adds the time series.</p><pre class="crayon-plain-tag">from pylab import *
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
import datetime as dt

def comma_format(x, p):
    return format(x, "6,.0f").replace(",", ".")

ax = subplot(111)
data = [448,448,9533, 12258, 15440, 17484, 21450,24045, 26198, 31903, 37271,45808, 49765,68182, 75964,82828 ,89805, 102488,109054 , 116028, 124239, 129882, 136492,151742, 160985 ,169541,181385,388633, 615584,796437,1233638,1463458,1716989,1950048]

x = mpl.dates.drange(dt.datetime(2012,3,1), 
                     dt.datetime(2014,12,12), 
                     dt.timedelta(days=30))

print len(x)
print len(data)

xx = np.arange(0,20,1)
yy = np.arange(1000,10000,450)
plt.title('/r/dataisbeautiful readers')
ylabel('Readers')
xlabel('Date')
ax.get_yaxis().set_major_formatter(ticker.FuncFormatter(comma_format))
#plt.plot(data, label='Readers')
plt.plot_date(x, data, '-', label='Readers')
plt.show()</pre><p>Raw data:</p><pre class="crayon-plain-tag">Date 	       Readers
01/02/2012         448
02/04/2012         448 
07/05/2012       9,533
02/06/2012      12,258
08/07/2012      15,440 
04/08/2012      17,484
10/09/2012      21,450
11/10/2012      24,045
01/11/2012      26,198
03/12/2012      31,903
02/01/2013      37,271
04/02/2013      45,808
02/03/2013      49,765
02/04/2013      68,182
01/05/2013      75,964
01/06/2013      82,828 
01/07/2013      89,805
01/08/2013     102,488 
01/09/2013     109,054 
01/10/2013     116,028
01/11/2013     124,239 
02/12/2013     129,882
01/01/2014     136,492
01/02/2014     151,742
02/03/2014     160,985 
06/04/2014     169,541
04/05/2014     181,385
01/06/2014     388,633
06/07/2014     615,584
01/08/2014     796,437   
28/09/2014   1,233,638
28/10/2014   1,463,458
28/11/2014   1,716,989
30/12/2014   1,950,048</pre><p>&nbsp;</p>
<p><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Ftalkera.org%2Fdata%2Freddit-readers-visualised-using-python%2F&amp;linkname=Reddit%20readers%20visualised%20using%20Python" title="Facebook" rel="nofollow" target="_blank"></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Ftalkera.org%2Fdata%2Freddit-readers-visualised-using-python%2F&amp;linkname=Reddit%20readers%20visualised%20using%20Python" title="Twitter" rel="nofollow" target="_blank"></a><a class="a2a_button_google_plus" href="http://www.addtoany.com/add_to/google_plus?linkurl=http%3A%2F%2Ftalkera.org%2Fdata%2Freddit-readers-visualised-using-python%2F&amp;linkname=Reddit%20readers%20visualised%20using%20Python" title="Google+" rel="nofollow" target="_blank"></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Ftalkera.org%2Fdata%2Freddit-readers-visualised-using-python%2F&amp;linkname=Reddit%20readers%20visualised%20using%20Python" title="Reddit" rel="nofollow" target="_blank"></a><a class="a2a_dd a2a_target addtoany_share_save" href="https://www.addtoany.com/share_save#url=http%3A%2F%2Ftalkera.org%2Fdata%2Freddit-readers-visualised-using-python%2F&amp;title=Reddit%20readers%20visualised%20using%20Python" id="wpa2a_2"></a></p>]]></content:encoded>
			<wfw:commentRss>https://talkera.org/data/reddit-readers-visualised-using-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet hosts in largest countries</title>
		<link>https://talkera.org/data/internet-hosts-in-largest-countries/</link>
		<comments>https://talkera.org/data/internet-hosts-in-largest-countries/#comments</comments>
		<pubDate>Tue, 30 Dec 2014 15:25:21 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hosts]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">https://talkera.org/data/?p=4</guid>
		<description><![CDATA[We compiled a visualisation of the number of Internet hosts per starting from 2006  up to 2014.  An Internet host is a computer connected with direct connection to the Internet. We selected the countries with the ten largest countries by populations to produce this chart: &#160; Top 9 (without the U.S.) Tools used: Excel Dataset: The dataset was [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>We compiled a visualisation of the number of Internet hosts per starting from 2006  up to 2014.  An Internet host is<em> a computer connected with direct connection to the Internet</em>. We selected the countries with the ten <a href="https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_population" target="_blank">largest countries by populations</a> to produce this chart:</p>
<p><a href="/data/wp-content/uploads/2014/12/internethosts2.png"><img class="alignnone wp-image-16 size-full" src="/data/wp-content/uploads/2014/12/internethosts2.png" alt="internethosts" width="605" height="340" /></a></p>
<p>&nbsp;</p>
<p>Top 9 (without the U.S.)</p>
<p><a href="/data/wp-content/uploads/2014/12/chart1.png"><img class="alignnone wp-image-24 size-full" src="/data/wp-content/uploads/2014/12/chart1.png" alt="chart" width="605" height="340" /></a></p>
<p><strong>Tools used:</strong><br />
Excel</p>
<p><strong>Dataset:</strong><br />
The dataset was compiled from these links:</p>
<ul>
<li><a href="https://web.archive.org/web/20070613003750/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html" target="_blank">https://web.archive.org/web/20070613003750/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html</a></li>
<li><a href="https://web.archive.org/web/20081210094327/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html" target="_blank">https://web.archive.org/web/20081210094327/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html</a></li>
<li><a href="https://web.archive.org/web/20091028133541/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html" target="_blank">https://web.archive.org/web/20091028133541/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html</a></li>
<li><a href="https://web.archive.org/web/20100602064002/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html" target="_blank">https://web.archive.org/web/20100602064002/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html</a></li>
<li><a href="https://web.archive.org/web/20111014135229/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html" target="_blank">https://web.archive.org/web/20111014135229/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html</a></li>
<li><a href="https://web.archive.org/web/20111014135229/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html" target="_blank">https://web.archive.org/web/20111014135229/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html</a></li>
<li><a href="https://web.archive.org/web/20131019143844/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html" target="_blank">https://web.archive.org/web/20131019143844/https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html</a></li>
<li><a href="https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html" target="_blank">https://www.cia.gov/library/publications/the-world-factbook/rankorder/2184rank.html</a></li>
</ul>
<p><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Ftalkera.org%2Fdata%2Finternet-hosts-in-largest-countries%2F&amp;linkname=Internet%20hosts%20in%20largest%20countries" title="Facebook" rel="nofollow" target="_blank"></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Ftalkera.org%2Fdata%2Finternet-hosts-in-largest-countries%2F&amp;linkname=Internet%20hosts%20in%20largest%20countries" title="Twitter" rel="nofollow" target="_blank"></a><a class="a2a_button_google_plus" href="http://www.addtoany.com/add_to/google_plus?linkurl=http%3A%2F%2Ftalkera.org%2Fdata%2Finternet-hosts-in-largest-countries%2F&amp;linkname=Internet%20hosts%20in%20largest%20countries" title="Google+" rel="nofollow" target="_blank"></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Ftalkera.org%2Fdata%2Finternet-hosts-in-largest-countries%2F&amp;linkname=Internet%20hosts%20in%20largest%20countries" title="Reddit" rel="nofollow" target="_blank"></a><a class="a2a_dd a2a_target addtoany_share_save" href="https://www.addtoany.com/share_save#url=http%3A%2F%2Ftalkera.org%2Fdata%2Finternet-hosts-in-largest-countries%2F&amp;title=Internet%20hosts%20in%20largest%20countries" id="wpa2a_4"></a></p>]]></content:encoded>
			<wfw:commentRss>https://talkera.org/data/internet-hosts-in-largest-countries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
