<?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 for Tore Opsahl</title>
	<atom:link href="http://toreopsahl.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://toreopsahl.com</link>
	<description>bouncing ideas</description>
	<lastBuildDate>Tue, 24 Jan 2012 16:14:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Securely using R and RStudio on Amazon&#8217;s EC2 by Tore Opsahl</title>
		<link>http://toreopsahl.com/2011/10/17/securely-using-r-and-rstudio-on-amazons-ec2/#comment-4830</link>
		<dc:creator><![CDATA[Tore Opsahl]]></dc:creator>
		<pubDate>Tue, 24 Jan 2012 16:14:54 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?p=3874#comment-4830</guid>
		<description><![CDATA[Hi Peter,

As far as I’m aware, an R instance on EC2 is just like an R instance on your computer. In other words, running a single instance of R without any form of parallell processing package uses a single core (at least for now).

Although there are parallell processing packages, I have found that for one-off analysis is that the potential gain is limited (e.g., the cost of extra programming time is often greater than the cost of extra running time). If you are to set up a repeating computationally intensive task, you might want to consider reprogramming it in c++ or using a map-reduce job (i.e., Hadoop / Amazon Elastic MapReduce).

Let me know what you end up doing!

Good luck!
Tore]]></description>
		<content:encoded><![CDATA[<p>Hi Peter,</p>
<p>As far as I’m aware, an R instance on EC2 is just like an R instance on your computer. In other words, running a single instance of R without any form of parallell processing package uses a single core (at least for now).</p>
<p>Although there are parallell processing packages, I have found that for one-off analysis is that the potential gain is limited (e.g., the cost of extra programming time is often greater than the cost of extra running time). If you are to set up a repeating computationally intensive task, you might want to consider reprogramming it in c++ or using a map-reduce job (i.e., Hadoop / Amazon Elastic MapReduce).</p>
<p>Let me know what you end up doing!</p>
<p>Good luck!<br />
Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Securely using R and RStudio on Amazon&#8217;s EC2 by Peter Verbeet</title>
		<link>http://toreopsahl.com/2011/10/17/securely-using-r-and-rstudio-on-amazons-ec2/#comment-4827</link>
		<dc:creator><![CDATA[Peter Verbeet]]></dc:creator>
		<pubDate>Tue, 24 Jan 2012 13:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?p=3874#comment-4827</guid>
		<description><![CDATA[Hi Tore,

When running R code over multiple threads on EC2, do you need to use snow, foreach, or another parallellization package? Or can I just run my normal code and see the speed go up as the number of cores increases in the cloud? In other words, do I need to learn additional programming tools in order to run R in the cloud?

thanks,
Peter]]></description>
		<content:encoded><![CDATA[<p>Hi Tore,</p>
<p>When running R code over multiple threads on EC2, do you need to use snow, foreach, or another parallellization package? Or can I just run my normal code and see the speed go up as the number of cores increases in the cloud? In other words, do I need to learn additional programming tools in order to run R in the cloud?</p>
<p>thanks,<br />
Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Networks by Tore Opsahl</title>
		<link>http://toreopsahl.com/tnet/weighted-networks/random-networks/#comment-4711</link>
		<dc:creator><![CDATA[Tore Opsahl]]></dc:creator>
		<pubDate>Mon, 16 Jan 2012 16:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=2862#comment-4711</guid>
		<description><![CDATA[Hi Jim,

Glad you are finding it useful!

The link reshuffling is not very efficient as it relies on igraph. I used to have a much more efficient script for sparse graphs, but had to provide loads of support for people using it on dense graphs. If you send me an email, we can see if this might be more appropriate for you.

Best,
Tore]]></description>
		<content:encoded><![CDATA[<p>Hi Jim,</p>
<p>Glad you are finding it useful!</p>
<p>The link reshuffling is not very efficient as it relies on igraph. I used to have a much more efficient script for sparse graphs, but had to provide loads of support for people using it on dense graphs. If you send me an email, we can see if this might be more appropriate for you.</p>
<p>Best,<br />
Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Random Networks by Jim</title>
		<link>http://toreopsahl.com/tnet/weighted-networks/random-networks/#comment-4705</link>
		<dc:creator><![CDATA[Jim]]></dc:creator>
		<pubDate>Mon, 16 Jan 2012 12:19:15 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=2862#comment-4705</guid>
		<description><![CDATA[Hi Tore, great site and resource.

I wondered how well the algorithm scaled to larger networks? I have a network of over 10k nodes and about 80k edges, I have been running your program for a while so far, but wondered if you had any idea on how long it might take to calculate?

Many thanks, and again, great site.]]></description>
		<content:encoded><![CDATA[<p>Hi Tore, great site and resource.</p>
<p>I wondered how well the algorithm scaled to larger networks? I have a network of over 10k nodes and about 80k edges, I have been running your program for a while so far, but wondered if you had any idea on how long it might take to calculate?</p>
<p>Many thanks, and again, great site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Securely using R and RStudio on Amazon&#8217;s EC2 by Tore Opsahl</title>
		<link>http://toreopsahl.com/2011/10/17/securely-using-r-and-rstudio-on-amazons-ec2/#comment-4596</link>
		<dc:creator><![CDATA[Tore Opsahl]]></dc:creator>
		<pubDate>Thu, 12 Jan 2012 03:33:31 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?p=3874#comment-4596</guid>
		<description><![CDATA[Hi John,

Great that you managed to solve it! It is easier to search for the ami id. If you go to the bioconductor page, they list their latest version (currently ami-9f12dcf6; R-2.14).

Best,
Tore]]></description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>Great that you managed to solve it! It is easier to search for the ami id. If you go to the bioconductor page, they list their latest version (currently ami-9f12dcf6; R-2.14).</p>
<p>Best,<br />
Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Securely using R and RStudio on Amazon&#8217;s EC2 by john</title>
		<link>http://toreopsahl.com/2011/10/17/securely-using-r-and-rstudio-on-amazons-ec2/#comment-4594</link>
		<dc:creator><![CDATA[john]]></dc:creator>
		<pubDate>Thu, 12 Jan 2012 03:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?p=3874#comment-4594</guid>
		<description><![CDATA[I resolved my problem and was able to open RStudio on the EC2 instance ... even using the tunneling.

I had searched for an instance using the &quot;RStudio&quot; keyword rather than bioconductor.
Once I got the BioConductor instance it all started working.

Thanks again.

- john]]></description>
		<content:encoded><![CDATA[<p>I resolved my problem and was able to open RStudio on the EC2 instance &#8230; even using the tunneling.</p>
<p>I had searched for an instance using the &#8220;RStudio&#8221; keyword rather than bioconductor.<br />
Once I got the BioConductor instance it all started working.</p>
<p>Thanks again.</p>
<p>- john</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Securely using R and RStudio on Amazon&#8217;s EC2 by john</title>
		<link>http://toreopsahl.com/2011/10/17/securely-using-r-and-rstudio-on-amazons-ec2/#comment-4588</link>
		<dc:creator><![CDATA[john]]></dc:creator>
		<pubDate>Wed, 11 Jan 2012 22:28:51 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?p=3874#comment-4588</guid>
		<description><![CDATA[This is a fantastic resource, thanks greatly.

I am having some trouble though. Evertything is fine until I try to do the tunneling to RStudio.
I suspect there is a deeper problem since I even tried opening port 8787 like the Bioconductor doc says and still could not get my browser to open RStudio.

Is it possible that some instances have RStudio listening on another port, e.g. port 80?
I was trying to figure out whether the issue was on my PC (Windows XP but running ZoneAlarm
   for a firewall and other security measures) or on the server side.
On the EC2 instance I ran netstat and the message seemed to suggest that RStudio
  was listening on port 80.  Still unable to connect on port 80 though with my web browser.

Anyone else having these issues?

thanks again,
  - john]]></description>
		<content:encoded><![CDATA[<p>This is a fantastic resource, thanks greatly.</p>
<p>I am having some trouble though. Evertything is fine until I try to do the tunneling to RStudio.<br />
I suspect there is a deeper problem since I even tried opening port 8787 like the Bioconductor doc says and still could not get my browser to open RStudio.</p>
<p>Is it possible that some instances have RStudio listening on another port, e.g. port 80?<br />
I was trying to figure out whether the issue was on my PC (Windows XP but running ZoneAlarm<br />
   for a firewall and other security measures) or on the server side.<br />
On the EC2 instance I ran netstat and the message seemed to suggest that RStudio<br />
  was listening on port 80.  Still unable to connect on port 80 though with my web browser.</p>
<p>Anyone else having these issues?</p>
<p>thanks again,<br />
  &#8211; john</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Datasets by Tore Opsahl</title>
		<link>http://toreopsahl.com/datasets/#comment-4378</link>
		<dc:creator><![CDATA[Tore Opsahl]]></dc:creator>
		<pubDate>Mon, 02 Jan 2012 22:32:13 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-4378</guid>
		<description><![CDATA[Tuğçe,

Thanks for letting me know. I just tried all of them, and they seemed to work. As they are all hosted on the same server, they should all work or all not work (e.g., if the server is down). Please email me if you have further issues.

Tore]]></description>
		<content:encoded><![CDATA[<p>Tuğçe,</p>
<p>Thanks for letting me know. I just tried all of them, and they seemed to work. As they are all hosted on the same server, they should all work or all not work (e.g., if the server is down). Please email me if you have further issues.</p>
<p>Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Datasets by Tuğçe</title>
		<link>http://toreopsahl.com/datasets/#comment-4370</link>
		<dc:creator><![CDATA[Tuğçe]]></dc:creator>
		<pubDate>Mon, 02 Jan 2012 15:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=846#comment-4370</guid>
		<description><![CDATA[Hello,
Could you check the Ucinet format buttons of all of them because they are not working for me. Is it me or the links broken?]]></description>
		<content:encoded><![CDATA[<p>Hello,<br />
Could you check the Ucinet format buttons of all of them because they are not working for me. Is it me or the links broken?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Structural Holes in Two-mode Networks by Tore Opsahl</title>
		<link>http://toreopsahl.com/tnet/two-mode-networks/structural-holes/#comment-4080</link>
		<dc:creator><![CDATA[Tore Opsahl]]></dc:creator>
		<pubDate>Fri, 23 Dec 2011 21:33:53 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=3508#comment-4080</guid>
		<description><![CDATA[Hi John! 

Thank you for your comment. I tried to finish the two-mode section before the holidays. Just this page and the random networks pages left. Hopefully I will try to get this completed soon. 

I am not aware of a specific local structural holes measure for two-mode networks. I have an idea for one based on a similar concept as the two-mode local clustering coefficient. At the moment, I am uncertain how well this measure will perform. As such, you might want to use the local clustering coefficient for two-mode networks (the local clustering coefficient is in many ways a simple constraint measure).

What do you think?
Tore]]></description>
		<content:encoded><![CDATA[<p>Hi John! </p>
<p>Thank you for your comment. I tried to finish the two-mode section before the holidays. Just this page and the random networks pages left. Hopefully I will try to get this completed soon. </p>
<p>I am not aware of a specific local structural holes measure for two-mode networks. I have an idea for one based on a similar concept as the two-mode local clustering coefficient. At the moment, I am uncertain how well this measure will perform. As such, you might want to use the local clustering coefficient for two-mode networks (the local clustering coefficient is in many ways a simple constraint measure).</p>
<p>What do you think?<br />
Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Structural Holes in Two-mode Networks by John T Scholz</title>
		<link>http://toreopsahl.com/tnet/two-mode-networks/structural-holes/#comment-4077</link>
		<dc:creator><![CDATA[John T Scholz]]></dc:creator>
		<pubDate>Fri, 23 Dec 2011 20:39:42 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=3508#comment-4077</guid>
		<description><![CDATA[Tore,
any idea of when you might complete the local structural hole procedure for 2-mode networks?  John]]></description>
		<content:encoded><![CDATA[<p>Tore,<br />
any idea of when you might complete the local structural hole procedure for 2-mode networks?  John</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Securely using R and RStudio on Amazon&#8217;s EC2 by Tore Opsahl</title>
		<link>http://toreopsahl.com/2011/10/17/securely-using-r-and-rstudio-on-amazons-ec2/#comment-3957</link>
		<dc:creator><![CDATA[Tore Opsahl]]></dc:creator>
		<pubDate>Mon, 19 Dec 2011 15:30:30 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?p=3874#comment-3957</guid>
		<description><![CDATA[Thanks, Luiz! Let me know if Amazon has changed anything with their interface.]]></description>
		<content:encoded><![CDATA[<p>Thanks, Luiz! Let me know if Amazon has changed anything with their interface.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Securely using R and RStudio on Amazon&#8217;s EC2 by Luiz</title>
		<link>http://toreopsahl.com/2011/10/17/securely-using-r-and-rstudio-on-amazons-ec2/#comment-3939</link>
		<dc:creator><![CDATA[Luiz]]></dc:creator>
		<pubDate>Mon, 19 Dec 2011 03:49:23 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?p=3874#comment-3939</guid>
		<description><![CDATA[Chanced upon this while trying to better understand how EC2 could be used in some applications I have in mind, and I am really impressed by the thoroughness of your post. Well done! Can&#039;t wait to try this myself.]]></description>
		<content:encoded><![CDATA[<p>Chanced upon this while trying to better understand how EC2 could be used in some applications I have in mind, and I am really impressed by the thoroughness of your post. Well done! Can&#8217;t wait to try this myself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on  by Vaclav</title>
		<link>http://toreopsahl.com/tnet/#comment-3709</link>
		<dc:creator><![CDATA[Vaclav]]></dc:creator>
		<pubDate>Thu, 08 Dec 2011 21:04:03 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=2756#comment-3709</guid>
		<description><![CDATA[Hi again,
you are absolutely right. It&#039;s only problem of those last nodes. Thanks again, your package is very helpful to my research!

All best,
Vaclav]]></description>
		<content:encoded><![CDATA[<p>Hi again,<br />
you are absolutely right. It&#8217;s only problem of those last nodes. Thanks again, your package is very helpful to my research!</p>
<p>All best,<br />
Vaclav</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why Anchorage is not (that) important: Binary ties and Sample selection by Tore Opsahl</title>
		<link>http://toreopsahl.com/2011/08/12/why-anchorage-is-not-that-important-binary-ties-and-sample-selection/#comment-3703</link>
		<dc:creator><![CDATA[Tore Opsahl]]></dc:creator>
		<pubDate>Thu, 08 Dec 2011 15:38:27 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?p=3566#comment-3703</guid>
		<description><![CDATA[Hi John,

I am not entirely sure how Pajek does two-mode projection, but here is the documentation for the projectiom_tm-function in tnet: &lt;a href=&quot;http://toreopsahl.com/tnet/two-mode-networks/projection/&quot; title=&quot;Projection&quot; rel=&quot;nofollow&quot;&gt;tnet » Two-mode Networks » Projection&lt;/a&gt;

Best,
Tore]]></description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>I am not entirely sure how Pajek does two-mode projection, but here is the documentation for the projectiom_tm-function in tnet: <a href="http://toreopsahl.com/tnet/two-mode-networks/projection/" title="Projection" rel="nofollow">tnet » Two-mode Networks » Projection</a></p>
<p>Best,<br />
Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why Anchorage is not (that) important: Binary ties and Sample selection by jlmccreery</title>
		<link>http://toreopsahl.com/2011/08/12/why-anchorage-is-not-that-important-binary-ties-and-sample-selection/#comment-3702</link>
		<dc:creator><![CDATA[jlmccreery]]></dc:creator>
		<pubDate>Thu, 08 Dec 2011 14:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?p=3566#comment-3702</guid>
		<description><![CDATA[I wouldn&#039;t call it a thought in any well-formed sense. Being still in the early stages of learning R, I have been looking at my data using Pajek and comparing betweenness measures and valued cores for weighted and unweighted 1-mode networks projected from my 2-mode networks. Not knowing the underlying algorithms, I am being utterly empirical and seeing how things vary depending on  where I start. The starting points are 2-mode networks simplified either with the [number of lines] setting that  retains the number of roles linking ads and creators  and assigns them as values to the single lines that replace the multiple lines or the [single line] setting that sets the line values of all the single lines to 1. I am now looking into whether this makes any difference when I project the 1-mode networks. In the [single lines] case, I know that Net&gt;Transform&gt;2-mode to 1-mode command generates a network in which line values correspond to the number of connections in overlaps for ad teams (events) or participation rates for creators (actors). Still have to test what happens when I try the same command starting with the [number of lines] 2-mode networks. 

I can see the mathematical point of the examples (A,B) and (B,C) with both line values set to 2 versus having one set to 3 and the other to 1. I&#039;m still thinking about what the sociological or other implications might be.]]></description>
		<content:encoded><![CDATA[<p>I wouldn&#8217;t call it a thought in any well-formed sense. Being still in the early stages of learning R, I have been looking at my data using Pajek and comparing betweenness measures and valued cores for weighted and unweighted 1-mode networks projected from my 2-mode networks. Not knowing the underlying algorithms, I am being utterly empirical and seeing how things vary depending on  where I start. The starting points are 2-mode networks simplified either with the [number of lines] setting that  retains the number of roles linking ads and creators  and assigns them as values to the single lines that replace the multiple lines or the [single line] setting that sets the line values of all the single lines to 1. I am now looking into whether this makes any difference when I project the 1-mode networks. In the [single lines] case, I know that Net&gt;Transform&gt;2-mode to 1-mode command generates a network in which line values correspond to the number of connections in overlaps for ad teams (events) or participation rates for creators (actors). Still have to test what happens when I try the same command starting with the [number of lines] 2-mode networks. </p>
<p>I can see the mathematical point of the examples (A,B) and (B,C) with both line values set to 2 versus having one set to 3 and the other to 1. I&#8217;m still thinking about what the sociological or other implications might be.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Node Centrality in Weighted Networks by Tore Opsahl</title>
		<link>http://toreopsahl.com/tnet/weighted-networks/node-centrality/#comment-3701</link>
		<dc:creator><![CDATA[Tore Opsahl]]></dc:creator>
		<pubDate>Thu, 08 Dec 2011 14:21:05 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=2848#comment-3701</guid>
		<description><![CDATA[Hi Lauren,

Thanks for your comment!

Indeed it would be great. If I do get time to program it, I will. Do you have any code for weighted eigenvector centrality?

Best,
Tore]]></description>
		<content:encoded><![CDATA[<p>Hi Lauren,</p>
<p>Thanks for your comment!</p>
<p>Indeed it would be great. If I do get time to program it, I will. Do you have any code for weighted eigenvector centrality?</p>
<p>Best,<br />
Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why Anchorage is not (that) important: Binary ties and Sample selection by Tore Opsahl</title>
		<link>http://toreopsahl.com/2011/08/12/why-anchorage-is-not-that-important-binary-ties-and-sample-selection/#comment-3700</link>
		<dc:creator><![CDATA[Tore Opsahl]]></dc:creator>
		<pubDate>Thu, 08 Dec 2011 14:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?p=3566#comment-3700</guid>
		<description><![CDATA[Hi John,

This definitely used to be the case with Anchorage as you said. The data used in the post is from 2010 (BTS) and August 2011 (Openflight), so it should have a limited impact. Although there might be some smaller planes which have to refuel, the aim of the post was not to analyse the airport network, but to highlight two statistical problems: sample selection and sensitivity to measurement using a dataset where &quot;true&quot;-data exist. 

&quot;True&quot; data is immensely important when proposing new methods in efforts to validate them. For the airport network, it is possible to use data from the Airports Council International (2011). This data states that large cities are the ones with the highest throughput of international passengers. Admittedly, by using transit of international passengers, US airports fall on the ranking as the US has a very high level of domestic air travel. 

An interesting extension of weighted betweenness is a measure that does not assume all nodes to be equal. For example, there are less people who live in Oslo than Los Angeles, and who subsequently fly. As such, the shortest path connecting major metropolitan areas might be more important than the one connecting two smaller cities. In turn, a node on the former path should be assigned a higher score than a node on the latter one. By weighting both ties and nodes, the new measure might be more appropriate than current ones. Any thoughts on this measure?

Best,
Tore]]></description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>This definitely used to be the case with Anchorage as you said. The data used in the post is from 2010 (BTS) and August 2011 (Openflight), so it should have a limited impact. Although there might be some smaller planes which have to refuel, the aim of the post was not to analyse the airport network, but to highlight two statistical problems: sample selection and sensitivity to measurement using a dataset where &#8220;true&#8221;-data exist. </p>
<p>&#8220;True&#8221; data is immensely important when proposing new methods in efforts to validate them. For the airport network, it is possible to use data from the Airports Council International (2011). This data states that large cities are the ones with the highest throughput of international passengers. Admittedly, by using transit of international passengers, US airports fall on the ranking as the US has a very high level of domestic air travel. </p>
<p>An interesting extension of weighted betweenness is a measure that does not assume all nodes to be equal. For example, there are less people who live in Oslo than Los Angeles, and who subsequently fly. As such, the shortest path connecting major metropolitan areas might be more important than the one connecting two smaller cities. In turn, a node on the former path should be assigned a higher score than a node on the latter one. By weighting both ties and nodes, the new measure might be more appropriate than current ones. Any thoughts on this measure?</p>
<p>Best,<br />
Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why Anchorage is not (that) important: Binary ties and Sample selection by John McCreery</title>
		<link>http://toreopsahl.com/2011/08/12/why-anchorage-is-not-that-important-binary-ties-and-sample-selection/#comment-3690</link>
		<dc:creator><![CDATA[John McCreery]]></dc:creator>
		<pubDate>Thu, 08 Dec 2011 08:09:32 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?p=3566#comment-3690</guid>
		<description><![CDATA[Don&#039;t know if it makes a difference to your data; but as someone who has been flying to Asia from the U.S. since 1969, I have vivid memories of what used to be refueling stops in anchorage before the introduction of planes able to do direct flights between the USA and Tokyo, Taipei or Hong Kong.]]></description>
		<content:encoded><![CDATA[<p>Don&#8217;t know if it makes a difference to your data; but as someone who has been flying to Asia from the U.S. since 1969, I have vivid memories of what used to be refueling stops in anchorage before the introduction of planes able to do direct flights between the USA and Tokyo, Taipei or Hong Kong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Node Centrality in Weighted Networks by Lauren Brent</title>
		<link>http://toreopsahl.com/tnet/weighted-networks/node-centrality/#comment-3677</link>
		<dc:creator><![CDATA[Lauren Brent]]></dc:creator>
		<pubDate>Wed, 07 Dec 2011 22:44:28 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=2848#comment-3677</guid>
		<description><![CDATA[I&#039;m finding your scripts very useful, in particular the randomisation functions. Any plans to expand your list of centrality measures? A weighted version of eigenvector centrality would be a great addition.]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m finding your scripts very useful, in particular the randomisation functions. Any plans to expand your list of centrality measures? A weighted version of eigenvector centrality would be a great addition.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on  by Tore Opsahl</title>
		<link>http://toreopsahl.com/tnet/#comment-3405</link>
		<dc:creator><![CDATA[Tore Opsahl]]></dc:creator>
		<pubDate>Thu, 24 Nov 2011 22:39:31 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=2756#comment-3405</guid>
		<description><![CDATA[Hi Vaclav,

Thanks! The edgelist format does indeed not include isolates when they are at the end of the node id sequence. If you have a look at the example in the &lt;a href=&quot;http://toreopsahl.com/2010/03/20/closeness-centrality-in-networks-with-disconnected-components/&quot; rel=&quot;nofollow&quot;&gt;Closeness centrality in networks with disconnected components&lt;/a&gt;-blog post, you can see how you can include isolates by making sure a non-isolate has the highest node id.

Best,
Tore]]></description>
		<content:encoded><![CDATA[<p>Hi Vaclav,</p>
<p>Thanks! The edgelist format does indeed not include isolates when they are at the end of the node id sequence. If you have a look at the example in the <a href="http://toreopsahl.com/2010/03/20/closeness-centrality-in-networks-with-disconnected-components/" rel="nofollow">Closeness centrality in networks with disconnected components</a>-blog post, you can see how you can include isolates by making sure a non-isolate has the highest node id.</p>
<p>Best,<br />
Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on  by Vaclav</title>
		<link>http://toreopsahl.com/tnet/#comment-3401</link>
		<dc:creator><![CDATA[Vaclav]]></dc:creator>
		<pubDate>Thu, 24 Nov 2011 14:19:42 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=2756#comment-3401</guid>
		<description><![CDATA[Hi, thank you for developing nice tools for NA. It seems to me, however, that your network format ignores zero-degree nodes, right?]]></description>
		<content:encoded><![CDATA[<p>Hi, thank you for developing nice tools for NA. It seems to me, however, that your network format ignores zero-degree nodes, right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing by Tore Opsahl</title>
		<link>http://toreopsahl.com/tnet/software/installing/#comment-3300</link>
		<dc:creator><![CDATA[Tore Opsahl]]></dc:creator>
		<pubDate>Wed, 16 Nov 2011 00:39:24 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=2983#comment-3300</guid>
		<description><![CDATA[Alireza,

Great that you got it to work!

Hope you&#039;ll find it useful. 

Tore]]></description>
		<content:encoded><![CDATA[<p>Alireza,</p>
<p>Great that you got it to work!</p>
<p>Hope you&#8217;ll find it useful. </p>
<p>Tore</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing by Alireza</title>
		<link>http://toreopsahl.com/tnet/software/installing/#comment-3299</link>
		<dc:creator><![CDATA[Alireza]]></dc:creator>
		<pubDate>Wed, 16 Nov 2011 00:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=2983#comment-3299</guid>
		<description><![CDATA[Sorry, it works.
The problem was that I should have set proxy in R (using setInternet2(TRUE) ).]]></description>
		<content:encoded><![CDATA[<p>Sorry, it works.<br />
The problem was that I should have set proxy in R (using setInternet2(TRUE) ).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing by Alireza</title>
		<link>http://toreopsahl.com/tnet/software/installing/#comment-3297</link>
		<dc:creator><![CDATA[Alireza]]></dc:creator>
		<pubDate>Tue, 15 Nov 2011 22:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://toreopsahl.com/?page_id=2983#comment-3297</guid>
		<description><![CDATA[Hi
it seems R version 2.14.0 doesn&#039;t support tnet, right?
I was trying to install tnet and got this warning message
&quot;In getDependencies(pkgs, dependencies, available, lib) : package ‘tnet’ is not available (for R version 2.14.0)&quot;

Look forward to hear from you
Thanks so much]]></description>
		<content:encoded><![CDATA[<p>Hi<br />
it seems R version 2.14.0 doesn&#8217;t support tnet, right?<br />
I was trying to install tnet and got this warning message<br />
&#8220;In getDependencies(pkgs, dependencies, available, lib) : package ‘tnet’ is not available (for R version 2.14.0)&#8221;</p>
<p>Look forward to hear from you<br />
Thanks so much</p>
]]></content:encoded>
	</item>
</channel>
</rss>

