<?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: Datasets</title>
	<atom:link href="http://toreopsahl.com/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/datasets/#comment-1132</link>
		<dc:creator>Tore Opsahl</dc:creator>
		<pubDate>Mon, 26 Jul 2010 17:31:38 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-1132</guid>
		<description>Arash,

That entirely depend on your raw data. R is great for manipulating data: have a look at Quick-R, http://www.statmethods.net/, for an introduction.

Best,
Tore</description>
		<content:encoded><![CDATA[<p>Arash,</p>
<p>That entirely depend on your raw data. R is great for manipulating data: have a look at Quick-R, <a href="http://www.statmethods.net/" rel="nofollow">http://www.statmethods.net/</a>, for an introduction.</p>
<p>Best,<br />
Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arash</title>
		<link>http://toreopsahl.com/datasets/#comment-1129</link>
		<dc:creator>Arash</dc:creator>
		<pubDate>Mon, 26 Jul 2010 03:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-1129</guid>
		<description>Dear Dr.Tore : 
How can I convert the raw data of a database into a structured form of dataset, like datasets which you have uploaded ?</description>
		<content:encoded><![CDATA[<p>Dear Dr.Tore :<br />
How can I convert the raw data of a database into a structured form of dataset, like datasets which you have uploaded ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tore Opsahl</title>
		<link>http://toreopsahl.com/datasets/#comment-1109</link>
		<dc:creator>Tore Opsahl</dc:creator>
		<pubDate>Sat, 19 Jun 2010 10:19:13 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-1109</guid>
		<description>For undirected networks, each tie should be mentioned twice -- one in each direction. You can use the symmetrise-function to do this. Let me know if you have further issues after running this command.

Tore</description>
		<content:encoded><![CDATA[<p>For undirected networks, each tie should be mentioned twice &#8212; one in each direction. You can use the symmetrise-function to do this. Let me know if you have further issues after running this command.</p>
<p>Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jay</title>
		<link>http://toreopsahl.com/datasets/#comment-1107</link>
		<dc:creator>jay</dc:creator>
		<pubDate>Thu, 17 Jun 2010 08:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-1107</guid>
		<description>Hi Tore,

I am trying to use tnet for a behavioral dataset as a trial, I tried an undirected network .

sampledata &lt;- rbind(
c(1,2,3),
c(1,3,2),
c(2,3,4),
c(2,4,5),
c(2,5,2),
c(6,5,1))

and used the weighted_richclub_w() function on the above. I find that for directed=FALSE and for rich=&quot;k&quot; and reshuffle=&quot;weights&quot;, it gives the following error message:

&quot;Error in random.m[i, j + 1] &lt;- random.phi[which(random.phi[, &quot;x&quot;] == j),  : 
  subscript out of bounds&quot;

The same error appears for rich=&quot;k&quot; and reshuffle=&quot;links&quot; with directed=FALSE

With directed=NULL there is no error ! 

1. I don&#039;t understand why it gave an error with directed=FALSE even though the input was actually an undirected network.

2. For the case of directed weighted network, how is the generalization done for null models weight reshuffle and weights &amp; links reshuffle of your PRL 101 paper ? 

3. Does the combination rich=&quot;k&quot;, reshuffle=&quot;links&quot; correspond to weight reshuffle, and rich=&quot;k&quot;, reshuffle=&quot;weights&quot; correspond to weights &amp; links reshuffle and rich=&quot;s&quot;, reshuffle=&quot;weights.local&quot; correspond to directed reshuffle null model of your PRL 101 paper ? 

Your comments on these will help me apply tnet to my data.

ciao,
jay</description>
		<content:encoded><![CDATA[<p>Hi Tore,</p>
<p>I am trying to use tnet for a behavioral dataset as a trial, I tried an undirected network .</p>
<p>sampledata &lt;- rbind(<br />
c(1,2,3),<br />
c(1,3,2),<br />
c(2,3,4),<br />
c(2,4,5),<br />
c(2,5,2),<br />
c(6,5,1))</p>
<p>and used the weighted_richclub_w() function on the above. I find that for directed=FALSE and for rich=&quot;k&quot; and reshuffle=&quot;weights&quot;, it gives the following error message:</p>
<p>&quot;Error in random.m[i, j + 1] &lt;- random.phi[which(random.phi[, &quot;x&quot;] == j),  :<br />
  subscript out of bounds&quot;</p>
<p>The same error appears for rich=&quot;k&quot; and reshuffle=&quot;links&quot; with directed=FALSE</p>
<p>With directed=NULL there is no error ! </p>
<p>1. I don&#039;t understand why it gave an error with directed=FALSE even though the input was actually an undirected network.</p>
<p>2. For the case of directed weighted network, how is the generalization done for null models weight reshuffle and weights &amp; links reshuffle of your PRL 101 paper ? </p>
<p>3. Does the combination rich=&quot;k&quot;, reshuffle=&quot;links&quot; correspond to weight reshuffle, and rich=&quot;k&quot;, reshuffle=&quot;weights&quot; correspond to weights &amp; links reshuffle and rich=&quot;s&quot;, reshuffle=&quot;weights.local&quot; correspond to directed reshuffle null model of your PRL 101 paper ? </p>
<p>Your comments on these will help me apply tnet to my data.</p>
<p>ciao,<br />
jay</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tore Opsahl</title>
		<link>http://toreopsahl.com/datasets/#comment-1092</link>
		<dc:creator>Tore Opsahl</dc:creator>
		<pubDate>Wed, 09 Jun 2010 14:41:48 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-1092</guid>
		<description>Hi Thor,

The standard answer is to use an edgelist as most R-packages can easily load this format. An edgelist is a list of the ties between nodes. For example:

1 2
3 1

would be the two ties from node 1 to node 2 and from node 3 to node 1. My package, tnet, uses a third column that differentiates the ties from one another:

1 2 4
3 1 2

so here, the first tie is twice as strong as the second tie.

To load a text file (.txt) with an edgelist, simply write in R:

net &lt;- read.table(&quot;filename_of_edgelist_file.txt&quot;)

That said, the standard network analysis packages might not be appropriate for you as they generally are cross-sectional and cannot distinguish between the first tie and the last tie. From you description, you might want to keep this temporal aspect in your analysis. Also, you might want to consider keeping the two-mode structure (i.e., people and companies) instead of simply creating a network among people (see the post on projecting networks).

All the best,
Tore</description>
		<content:encoded><![CDATA[<p>Hi Thor,</p>
<p>The standard answer is to use an edgelist as most R-packages can easily load this format. An edgelist is a list of the ties between nodes. For example:</p>
<p>1 2<br />
3 1</p>
<p>would be the two ties from node 1 to node 2 and from node 3 to node 1. My package, tnet, uses a third column that differentiates the ties from one another:</p>
<p>1 2 4<br />
3 1 2</p>
<p>so here, the first tie is twice as strong as the second tie.</p>
<p>To load a text file (.txt) with an edgelist, simply write in R:</p>
<p>net &lt;- read.table(&#8220;filename_of_edgelist_file.txt&#8221;)</p>
<p>That said, the standard network analysis packages might not be appropriate for you as they generally are cross-sectional and cannot distinguish between the first tie and the last tie. From you description, you might want to keep this temporal aspect in your analysis. Also, you might want to consider keeping the two-mode structure (i.e., people and companies) instead of simply creating a network among people (see the post on projecting networks).</p>
<p>All the best,<br />
Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thor Sigfusson</title>
		<link>http://toreopsahl.com/datasets/#comment-1091</link>
		<dc:creator>Thor Sigfusson</dc:creator>
		<pubDate>Wed, 09 Jun 2010 12:26:10 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-1091</guid>
		<description>Dear Tore,

I find your site extremely helpful. In my PhD I am working on a study of 20 entrepreneurial high tech firms in Iceland and building a framework of their international ventures.  As the interviews with the firms have proceeded I have noticed aspects which have drawn my attention to  social networks. Especially interesting was that many of the entrepreneurs mentioned the same individuals who were connectors in their initial international ventures. I am also observing their relations on the new social networks on the web and the networks which they talk about in the interviews and the networks on the web are quite different!  This would be interesting to observe with SNAS tools. I have now a list of 130 individuals/links  (all numbered from 1 to 130).  Now I am struggling to set it up in an R-Framework.  Any suggestions?

Best regards

Thor 
University of Iceland</description>
		<content:encoded><![CDATA[<p>Dear Tore,</p>
<p>I find your site extremely helpful. In my PhD I am working on a study of 20 entrepreneurial high tech firms in Iceland and building a framework of their international ventures.  As the interviews with the firms have proceeded I have noticed aspects which have drawn my attention to  social networks. Especially interesting was that many of the entrepreneurs mentioned the same individuals who were connectors in their initial international ventures. I am also observing their relations on the new social networks on the web and the networks which they talk about in the interviews and the networks on the web are quite different!  This would be interesting to observe with SNAS tools. I have now a list of 130 individuals/links  (all numbered from 1 to 130).  Now I am struggling to set it up in an R-Framework.  Any suggestions?</p>
<p>Best regards</p>
<p>Thor<br />
University of Iceland</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tore Opsahl</title>
		<link>http://toreopsahl.com/datasets/#comment-1060</link>
		<dc:creator>Tore Opsahl</dc:creator>
		<pubDate>Mon, 03 May 2010 22:48:15 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-1060</guid>
		<description>Nina,

Glad you find this page useful.

Mark Newman sent me the two-mode network, which did contain the names of the authors. I have uploaded this file now (see the network description). Also, in the description of the Southern Women dataset is a link to the women&#039;s first name. 

All the two-mode network files list people ids first, and then the paper/event ids.

Hope this helps,

Tore</description>
		<content:encoded><![CDATA[<p>Nina,</p>
<p>Glad you find this page useful.</p>
<p>Mark Newman sent me the two-mode network, which did contain the names of the authors. I have uploaded this file now (see the network description). Also, in the description of the Southern Women dataset is a link to the women&#8217;s first name. </p>
<p>All the two-mode network files list people ids first, and then the paper/event ids.</p>
<p>Hope this helps,</p>
<p>Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nina</title>
		<link>http://toreopsahl.com/datasets/#comment-1059</link>
		<dc:creator>Nina</dc:creator>
		<pubDate>Sun, 02 May 2010 19:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-1059</guid>
		<description>Dear Tore, thanks for sharing the data with us. I&#039;m most interested into your bipartite network data. The one you compiled from Newman - how did you actually do that? I could only find a compiled, weighted, one-mode version from him. Do you have the raw data from him? Or could you tell me which author hides behind which ID? Is the first column the author or the paper?
Both informations would be very valuable to me. 
The same with the women-event data: do you have a key which woman is what and which event is which? That would be very interesting! Thanks again for sharing,
Nina</description>
		<content:encoded><![CDATA[<p>Dear Tore, thanks for sharing the data with us. I&#8217;m most interested into your bipartite network data. The one you compiled from Newman &#8211; how did you actually do that? I could only find a compiled, weighted, one-mode version from him. Do you have the raw data from him? Or could you tell me which author hides behind which ID? Is the first column the author or the paper?<br />
Both informations would be very valuable to me.<br />
The same with the women-event data: do you have a key which woman is what and which event is which? That would be very interesting! Thanks again for sharing,<br />
Nina</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tore Opsahl</title>
		<link>http://toreopsahl.com/datasets/#comment-562</link>
		<dc:creator>Tore Opsahl</dc:creator>
		<pubDate>Mon, 23 Nov 2009 09:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-562</guid>
		<description>Thanks for taking an interest in the dataset. To create a nodelist, I would:
1) Download the dl file
2) Import it in UCINET (Data &gt; Import text file &gt; DL...)
3) Export it as a nodelist file (Data &gt; Export &gt; Raw...; Select &lt;em&gt;Output format&lt;/em&gt; as &lt;em&gt;Nodelist1&lt;/em&gt;, and &lt;em&gt;Minimum tie val allowed&lt;/em&gt; as 1)</description>
		<content:encoded><![CDATA[<p>Thanks for taking an interest in the dataset. To create a nodelist, I would:<br />
1) Download the dl file<br />
2) Import it in UCINET (Data &gt; Import text file &gt; DL&#8230;)<br />
3) Export it as a nodelist file (Data &gt; Export &gt; Raw&#8230;; Select <em>Output format</em> as <em>Nodelist1</em>, and <em>Minimum tie val allowed</em> as 1)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rasheed</title>
		<link>http://toreopsahl.com/datasets/#comment-561</link>
		<dc:creator>Rasheed</dc:creator>
		<pubDate>Mon, 23 Nov 2009 08:15:11 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-561</guid>
		<description>I just downloaded your Online Social Network dataset in UCINET format. its really nice and thanks for the effort. it is in &quot;edge list&quot; format. Is there any tool which provides conversion from edge list format to &quot;node list&quot; format? Kindly let me know.</description>
		<content:encoded><![CDATA[<p>I just downloaded your Online Social Network dataset in UCINET format. its really nice and thanks for the effort. it is in &#8220;edge list&#8221; format. Is there any tool which provides conversion from edge list format to &#8220;node list&#8221; format? Kindly let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Navneet Aggarwal</title>
		<link>http://toreopsahl.com/datasets/#comment-154</link>
		<dc:creator>Navneet Aggarwal</dc:creator>
		<pubDate>Sat, 13 Jun 2009 05:13:45 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-154</guid>
		<description>Hi Tore,
First off, congratulation on the completion of your Ph.D. Now, I have a question for you. Have you ever come across a network dataset that includes geospatial data along with the usual weights and edge lists? I am working on infrastructural networks and this can provide some extra information about node that are note connected, however I am having a hard time finding such a data set. 

Also, this blog looks great!!

Regards,
Nav.</description>
		<content:encoded><![CDATA[<p>Hi Tore,<br />
First off, congratulation on the completion of your Ph.D. Now, I have a question for you. Have you ever come across a network dataset that includes geospatial data along with the usual weights and edge lists? I am working on infrastructural networks and this can provide some extra information about node that are note connected, however I am having a hard time finding such a data set. </p>
<p>Also, this blog looks great!!</p>
<p>Regards,<br />
Nav.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
