<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Thesis: 1.4 Network datasets</title>
	<atom:link href="http://toreopsahl.com/publications/thesis/thesis-14-network-datasets/feed/" rel="self" type="application/rss+xml" />
	<link>http://toreopsahl.com</link>
	<description>bouncing ideas</description>
	<lastBuildDate>Tue, 24 Aug 2010 19:03:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Tore Opsahl</title>
		<link>http://toreopsahl.com/publications/thesis/thesis-14-network-datasets/#comment-770</link>
		<dc:creator>Tore Opsahl</dc:creator>
		<pubDate>Thu, 07 Jan 2010 16:43:01 +0000</pubDate>
		<guid isPermaLink="false">http://thetore.wordpress.com/?page_id=285#comment-770</guid>
		<description>Dear Tiha,

Thank you for taking an interest in my blog, and thesis.

I think this is a reflection of a more general issue that network scientists have to deal with sooner or later. Complete networks do not exist in isolation, but form part of a wider system. In fact, it is similar to ego networks that are part of a larger complete network. It is easy to say that we simply define our network as the 306 neurons without taking into consideration the system around them. However, we are then missing a key feature: certain neurons are connected to the body while others are not. By not having information about connections outside the network, we are not able to characterise the nodes fully by simply looking at the network. 

By looking at the last 7 nodes in the network, it is easy to see that there are &quot;pendant&quot; nodes that simply has one weak connection to someone else (sensory neurons possibly?), and some nodes that are receivers of many ties without having any outgoing ties. As you mention, 134 neurons are connected to node #305 (incoming ties) through 1700 synapses or gap junctions. This is the maximum in-degree and in-strength of any node in the network. As a layman within the neural network research, I would assume neuron #305 is a major connector to the rest of the worm. 

Best regards,

Tore

[sourcecode type=&quot;text&quot;]
node degree.out output.out degree.in output.in
 300          1          1         0         0
 301          1          1         0         0
 302          1          1         0         0
 303          0          0        10        13
 304          0          0         0         0
 305          0          0       134      1700
 306          0          0        31        68
[/sourcecode]

To get this table:
[sourcecode type=&quot;text&quot;]
# Load tnet
library(tnet)

# Load network
celegans.n306.net &lt;- read.table(&quot;http://opsahl.co.uk/tnet/datasets/celegans_n306.txt&quot;)

# Run out- and in-degree function
out &lt;- data.frame(degree_w(celegans.n306.net), degree_w(celegans.n306.net, type=&quot;in&quot;)[,2:3])

# Name columns
dimnames(out)[[2]] &lt;- c(&quot;node&quot;,&quot;degree.out&quot;,&quot;output.out&quot;,&quot;degree.in&quot;,&quot;output.in&quot;)

# Output results
out[300:306,]
[/sourcecode]</description>
		<content:encoded><![CDATA[<p>Dear Tiha,</p>
<p>Thank you for taking an interest in my blog, and thesis.</p>
<p>I think this is a reflection of a more general issue that network scientists have to deal with sooner or later. Complete networks do not exist in isolation, but form part of a wider system. In fact, it is similar to ego networks that are part of a larger complete network. It is easy to say that we simply define our network as the 306 neurons without taking into consideration the system around them. However, we are then missing a key feature: certain neurons are connected to the body while others are not. By not having information about connections outside the network, we are not able to characterise the nodes fully by simply looking at the network. </p>
<p>By looking at the last 7 nodes in the network, it is easy to see that there are &#8220;pendant&#8221; nodes that simply has one weak connection to someone else (sensory neurons possibly?), and some nodes that are receivers of many ties without having any outgoing ties. As you mention, 134 neurons are connected to node #305 (incoming ties) through 1700 synapses or gap junctions. This is the maximum in-degree and in-strength of any node in the network. As a layman within the neural network research, I would assume neuron #305 is a major connector to the rest of the worm. </p>
<p>Best regards,</p>
<p>Tore</p>
<pre class="brush: plain;">
node degree.out output.out degree.in output.in
 300          1          1         0         0
 301          1          1         0         0
 302          1          1         0         0
 303          0          0        10        13
 304          0          0         0         0
 305          0          0       134      1700
 306          0          0        31        68
</pre>
<p>To get this table:</p>
<pre class="brush: plain;">
# Load tnet
library(tnet)

# Load network
celegans.n306.net &lt;- read.table(&quot;http://opsahl.co.uk/tnet/datasets/celegans_n306.txt&quot;)

# Run out- and in-degree function
out &lt;- data.frame(degree_w(celegans.n306.net), degree_w(celegans.n306.net, type=&quot;in&quot;)[,2:3])

# Name columns
dimnames(out)[[2]] &lt;- c(&quot;node&quot;,&quot;degree.out&quot;,&quot;output.out&quot;,&quot;degree.in&quot;,&quot;output.in&quot;)

# Output results
out[300:306,]
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tiha</title>
		<link>http://toreopsahl.com/publications/thesis/thesis-14-network-datasets/#comment-767</link>
		<dc:creator>Tiha</dc:creator>
		<pubDate>Thu, 07 Jan 2010 04:49:13 +0000</pubDate>
		<guid isPermaLink="false">http://thetore.wordpress.com/?page_id=285#comment-767</guid>
		<description>With reference to the C. elegans graph: the in-degree of node 305 is about 130; its out-degree is zero. What&#039;s a neuron doing all day with no out-degree and such a vast source of input signals? I have tried to find some information on this but have failed to dig up anything so far.

I assume that 0 in-degree could mean a sensory neuron and 0 out-degree some sort of an &quot;actuator;&quot; that is their inputs and outputs respectively are relayed from/to non-neuron cells but that still doesn&#039;t solve the #305 mystery. Any thoughts?

Kind regards,</description>
		<content:encoded><![CDATA[<p>With reference to the C. elegans graph: the in-degree of node 305 is about 130; its out-degree is zero. What&#8217;s a neuron doing all day with no out-degree and such a vast source of input signals? I have tried to find some information on this but have failed to dig up anything so far.</p>
<p>I assume that 0 in-degree could mean a sensory neuron and 0 out-degree some sort of an &#8220;actuator;&#8221; that is their inputs and outputs respectively are relayed from/to non-neuron cells but that still doesn&#8217;t solve the #305 mystery. Any thoughts?</p>
<p>Kind regards,</p>
]]></content:encoded>
	</item>
</channel>
</rss>
