<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>NodeXL Forum Rss Feed</title><link>http://www.codeplex.com/NodeXL/Thread/List.aspx</link><description>NodeXL Forum Rss Description</description><item><title>New Post: Making Twitter Network with Twitter API</title><link>http://nodexl.codeplex.com/discussions/444167</link><description>&lt;div style="line-height: normal;"&gt;Hi, everyone! Can I ask one question?&lt;br /&gt;
&lt;br /&gt;
 I have a big big problem with making tiwtter network. &lt;br /&gt;
&lt;br /&gt;
I am doing my class assignment with NodeXL book, and I am stuck in Figure 10.17 on page 157-158. &lt;br /&gt;
&lt;br /&gt;
I couldn't find Twitter replies/metions API. I clicked URL which book suggests on page 157, but it said &amp;quot;could not authenticate you.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
So, my request is... how can I get replies and mentions from Twitter and put these things to my network? ;) &lt;br /&gt;
&lt;br /&gt;
Ah, I am using the latest version! and it takes too long time to collect twitter network ;0;&lt;br /&gt;
&lt;/div&gt;</description><author>owlmail0420</author><pubDate>Sun, 19 May 2013 03:22:20 GMT</pubDate><guid isPermaLink="false">New Post: Making Twitter Network with Twitter API 20130519032220A</guid></item><item><title>New Post: NodeXLControl Vertices with same location when animating graph.</title><link>http://nodexl.codeplex.com/discussions/442915</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div&gt;On 12/05/2013 18:47, tcap479 wrote:&lt;br&gt;
&lt;/div&gt;
&lt;blockquote type="cite"&gt;
&lt;p&gt;From: tcap479&lt;/p&gt;
&lt;div id="ThreadNotificationPostBody"&gt;I tried what you're doing and my guess about the cause of the problem turns out to be correct.
&lt;br&gt;
&lt;br&gt;
I'm not sure what the long-term fix for this should be. For now, you can use either of the workarounds I suggested. They worked when I tried them.
&lt;br&gt;
&lt;br&gt;
-- Tony&lt;br&gt;
&lt;/div&gt;
&lt;/blockquote&gt;
Cheers, will do!&lt;br&gt;
&lt;/div&gt;</description><author>TonyDaviesHP</author><pubDate>Mon, 13 May 2013 17:56:13 GMT</pubDate><guid isPermaLink="false">New Post: NodeXLControl Vertices with same location when animating graph. 20130513055613P</guid></item><item><title>New Post: NodeXLControl Vertices with same location when animating graph.</title><link>http://nodexl.codeplex.com/discussions/442915</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div&gt;On 09/05/2013 16:04, tcap479 wrote:&lt;br&gt;
&lt;/div&gt;
&lt;blockquote type="cite"&gt;
&lt;p&gt;From: tcap479&lt;/p&gt;
&lt;div id="ThreadNotificationPostBody"&gt;Tony D: &lt;br&gt;
&lt;br&gt;
Thanks for all the details, which are very useful. You've given me the information I'll need to reproduce the problem when I get back to a development computer this weekend.
&lt;br&gt;
&lt;br&gt;
We don't use the control in this manner in our own application, and no one else has reported doing so, either. I mention that only to explain why such an obvious bug has survived for so long.
&lt;br&gt;
&lt;br&gt;
In the meantime, I think I know what's going on. The Fruchterman-Reingold layout algorithm requires that vertex locations be initially randomized. NodeXL does this automatically the first time it lays out the graph. It then marks the graph with a &amp;quot;graph has
 been laid out at least once&amp;quot; metadata key, which it uses to avoid randomizing the vertices again if you lay out the graph again. That way the graph can be laid out iteratively, with the previously laid out locations used as the starting point for the next
 iteration. &lt;br&gt;
&lt;br&gt;
You, however, are adding vertices between iterations, and the locations of those additional vertices never get randomized. The added vertices all have default locations of 0,0, and Fruchterman-Reingold doesn't properly lay out vertices with the same locations.
 (That's why they have to be randomized.) &lt;br&gt;
&lt;br&gt;
So as a temporary workaround--or maybe a permanent one, I'm not sure yet--assign random locations to your new vertices before you add them to the graph. Or as a simpler technique, assign Vertex.ID to the X- and Y-coordinates of each added vertex. IDs are unique,
 so that should keep the vertices from having the same initial locations. &lt;br&gt;
&lt;br&gt;
An alternative workaround is to remove the &amp;quot;graph has been laid out at least once&amp;quot; marker from the graph before you add more vertices. That will cause all vertex locations to be randomized with each iteration. You would do that by calling LayoutMetadataUtil.MarkGraphAsNotLaidOut(nodeXLControl.Graph).
&lt;br&gt;
&lt;br&gt;
In any case, let me know what happens. &lt;br&gt;
&lt;br&gt;
&lt;p&gt;-- Tony&lt;/p&gt;
&lt;/div&gt;
&lt;/blockquote&gt;
Tony, &lt;br&gt;
&lt;br&gt;
Again, many thanks for your swift response. Unfortunately I am on leave at present so will not be able to test your suggested fixes until next week but will try then as soon as I return.
&lt;br&gt;
&lt;br&gt;
Regards&lt;br&gt;
&lt;br&gt;
Tony D&lt;br&gt;
&lt;blockquote type="cite"&gt;
&lt;div id="ThreadNotificationPostBody"&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>TonyDaviesHP</author><pubDate>Mon, 13 May 2013 17:39:43 GMT</pubDate><guid isPermaLink="false">New Post: NodeXLControl Vertices with same location when animating graph. 20130513053943P</guid></item><item><title>New Post: NodeXLControl Vertices with same location when animating graph.</title><link>http://nodexl.codeplex.com/discussions/442915</link><description>&lt;div style="line-height: normal;"&gt;I tried what you're doing and my guess about the cause of the problem turns out to be correct.&lt;br /&gt;
&lt;br /&gt;
I'm not sure what the long-term fix for this should be.  For now, you can use either of the workarounds I suggested.  They worked when I tried them.&lt;br /&gt;
&lt;br /&gt;
-- Tony&lt;br /&gt;
&lt;/div&gt;</description><author>tcap479</author><pubDate>Sun, 12 May 2013 17:47:18 GMT</pubDate><guid isPermaLink="false">New Post: NodeXLControl Vertices with same location when animating graph. 20130512054718P</guid></item><item><title>New Post: NodeXLControl Vertices with same location when animating graph.</title><link>http://nodexl.codeplex.com/discussions/442915</link><description>&lt;div style="line-height: normal;"&gt;Tony D:&lt;br /&gt;
&lt;br /&gt;
Thanks for all the details, which are very useful.  You've given me the information I'll need to reproduce the problem when I get back to a development computer this weekend.&lt;br /&gt;
&lt;br /&gt;
We don't use the control in this manner in our own application, and no one else has reported doing so, either.  I mention that only to explain why such an obvious bug has survived for so long.&lt;br /&gt;
&lt;br /&gt;
In the meantime, I think I know what's going on.  The Fruchterman-Reingold layout algorithm requires that vertex locations be initially randomized.  NodeXL does this automatically the first time it lays out the graph.  It then marks the graph with a &amp;quot;graph has been laid out at least once&amp;quot; metadata key, which it uses to avoid randomizing the vertices again if you lay out the graph again.  That way the graph can be laid out iteratively, with the previously laid out locations used as the starting point for the next iteration.&lt;br /&gt;
&lt;br /&gt;
You, however, are adding vertices between iterations, and the locations of those additional vertices never get randomized.  The added vertices all have default locations of 0,0, and Fruchterman-Reingold doesn't properly lay out vertices with the same locations.  (That's why they have to be randomized.)&lt;br /&gt;
&lt;br /&gt;
So as a temporary workaround--or maybe a permanent one, I'm not sure yet--assign random locations to your new vertices before you add them to the graph.  Or as a simpler technique, assign Vertex.ID to the X- and Y-coordinates of each added vertex.  IDs are unique, so that should keep the vertices from having the same initial locations.&lt;br /&gt;
&lt;br /&gt;
An alternative workaround is to remove the &amp;quot;graph has been laid out at least once&amp;quot; marker from the graph before you add more vertices.  That will cause all vertex locations to be randomized with each iteration.  You would do that by calling LayoutMetadataUtil.MarkGraphAsNotLaidOut(nodeXLControl.Graph).&lt;br /&gt;
&lt;br /&gt;
In any case, let me know what happens.&lt;br /&gt;
&lt;br /&gt;
-- Tony C&lt;br /&gt;
&lt;/div&gt;</description><author>tcap479</author><pubDate>Thu, 09 May 2013 15:04:39 GMT</pubDate><guid isPermaLink="false">New Post: NodeXLControl Vertices with same location when animating graph. 20130509030439P</guid></item><item><title>New Post: NodeXLControl Vertices with same location when animating graph.</title><link>http://nodexl.codeplex.com/discussions/442915</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div dir="ltr"&gt;
&lt;div&gt;Tony, &lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Thanks for you quick response. &lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;You have paraphrased the problem correctly: I am adding nodes and edges to the graph and redrawing at which point multiple vertices end up with the same location.&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;I have tried nodeXLControl.Layout = new Smrf.NodeXL.Layouts.FruchtermanReingoldLayout(); but this does not change the outcome.
&lt;br&gt;
&lt;/div&gt;
&lt;div&gt;To add some more detail; only the last set of vertices to be added are co-located at each redraw, previous duplications are resolved - for example:
&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;At the first pass one vertex (1) is added &lt;/div&gt;
&lt;div&gt;At the second pass, four further vertices (2-5) with edges to vertex 1 are added and all have the same location. This is evidenced both visually - they overlap - and by looking at the X and Y location co-ordinates which are identical.
&lt;/div&gt;
&lt;div&gt;At the third pass, 4 further vertices (6-9) are added with edges to vertices 2 and these will all have the same location. The vertices 2-5 will now have discreet locations.
&lt;/div&gt;
&lt;div&gt;And so on, leaving the last set of vertices added co-located &lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Here are the location data for a typical example...&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;ID: 1, X co-ord: 779.6434, Y co-ord: 261.4258&lt;br&gt;
ID: 2, X co-ord: 585.4472, Y co-ord: 229.007&lt;br&gt;
ID: 3, X co-ord: 399.4764, Y co-ord: 305.0099&lt;br&gt;
ID: 4, X co-ord: 369.0031, Y co-ord: 136.486&lt;br&gt;
ID: 5, X co-ord: 788, Y co-ord: 230.753&lt;br&gt;
ID: 6, X co-ord: 282.7024, Y co-ord: 340.5359&lt;br&gt;
ID: 7, X co-ord: 282.7024, Y co-ord: 340.5359&lt;br&gt;
ID: 8, X co-ord: 282.7024, Y co-ord: 340.5359&lt;br&gt;
ID: 9, X co-ord: 267.7145, Y co-ord: 149.6625&lt;br&gt;
ID: 10, X co-ord: 267.7145, Y co-ord: 149.6625&lt;br&gt;
ID: 11, X co-ord: 267.7145, Y co-ord: 149.6625&lt;br&gt;
ID: 12, X co-ord: 267.7145, Y co-ord: 149.6625&lt;br&gt;
ID: 13, X co-ord: 267.7145, Y co-ord: 149.6625&lt;br&gt;
ID: 14, X co-ord: 267.7145, Y co-ord: 149.6625&lt;br&gt;
ID: 15, X co-ord: 267.7145, Y co-ord: 149.6625&lt;br&gt;
ID: 16, X co-ord: 267.7145, Y co-ord: 149.6625&lt;br&gt;
ID: 17, X co-ord: 267.7145, Y co-ord: 149.6625&lt;br&gt;
ID: 18, X co-ord: 148.3842, Y co-ord: 41.90063&lt;br&gt;
ID: 19, X co-ord: 267.7145, Y co-ord: 149.6625&lt;br&gt;
ID: 20, X co-ord: 267.7145, Y co-ord: 149.6625&lt;br&gt;
ID: 21, X co-ord: 16.57254, Y co-ord: 155.1314&lt;br&gt;
ID: 22, X co-ord: 16.57254, Y co-ord: 155.1314&lt;br&gt;
ID: 23, X co-ord: 16.57254, Y co-ord: 155.1314&lt;br&gt;
ID: 24, X co-ord: 16.57254, Y co-ord: 155.1314&lt;br&gt;
ID: 25, X co-ord: 16.57254, Y co-ord: 155.1314&lt;br&gt;
ID: 26, X co-ord: 16.57254, Y co-ord: 155.1314&lt;br&gt;
ID: 27, X co-ord: 16.57254, Y co-ord: 155.1314&lt;br&gt;
ID: 28, X co-ord: 16.57254, Y co-ord: 155.1314&lt;br&gt;
ID: 29, X co-ord: 16.57254, Y co-ord: 155.1314&lt;br&gt;
ID: 30, X co-ord: 12, Y co-ord: 12.9282&lt;br&gt;
ID: 31, X co-ord: 12, Y co-ord: 12.9282&lt;br&gt;
ID: 32, X co-ord: 12, Y co-ord: 12.9282&lt;br&gt;
ID: 33, X co-ord: 12, Y co-ord: 12.9282&lt;br&gt;
ID: 34, X co-ord: 16.57254, Y co-ord: 155.1314&lt;br&gt;
ID: 35, X co-ord: 16.57254, Y co-ord: 155.1314&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Sorry this is so wordy; a picture would, as they say, be worth a thousand! &lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Regards &lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Tony D&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;br&gt;
&lt;br&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>TonyDaviesHP</author><pubDate>Thu, 09 May 2013 10:27:55 GMT</pubDate><guid isPermaLink="false">New Post: NodeXLControl Vertices with same location when animating graph. 20130509102755A</guid></item><item><title>New Post: Average Geodesic Distance</title><link>http://nodexl.codeplex.com/discussions/441890</link><description>&lt;div style="line-height: normal;"&gt;Alice:&lt;br /&gt;
&lt;br /&gt;
It doesn't, and I'm not familiar with that particular metric.  We may have to add it to our feature request list.&lt;br /&gt;
&lt;br /&gt;
Good luck in your poly sci class.  (That's what we called it when I was in school, anyway.)&lt;br /&gt;
&lt;br /&gt;
-- Tony&lt;br /&gt;
&lt;/div&gt;</description><author>tcap479</author><pubDate>Thu, 09 May 2013 00:25:00 GMT</pubDate><guid isPermaLink="false">New Post: Average Geodesic Distance 20130509122500A</guid></item><item><title>New Post: Average Geodesic Distance</title><link>http://nodexl.codeplex.com/discussions/441890</link><description>&lt;div style="line-height: normal;"&gt;Thanks so much--that info is really helpful for interpreting the statistic and also gives me an idea of how to recalculate the statistic so that the denominator does not include self-loops (as I am not using those in my dataset). &lt;br /&gt;
&lt;br /&gt;
Does NodeXL calculate statistical significance, for example to compare a statistic between two groups? I have not been able to discover how to find statistical significance in social network analysis, so any help would be fantastic.&lt;br /&gt;
&lt;br /&gt;
Thanks again for all this help. My Political Science professor plans to implement NodeXL in classes and this will all be a great help.&lt;br /&gt;
&lt;/div&gt;</description><author>alice_research</author><pubDate>Wed, 08 May 2013 18:40:33 GMT</pubDate><guid isPermaLink="false">New Post: Average Geodesic Distance 20130508064033P</guid></item><item><title>New Post: NodeXLControl Vertices with same location when animating graph.</title><link>http://nodexl.codeplex.com/discussions/442915</link><description>&lt;div style="line-height: normal;"&gt;Tony D:&lt;br /&gt;
&lt;br /&gt;
I'm not sure I understand the problem you're describing.  You're adding vertices and edges to the graph (but not removing any), calling DrawGraph(true), and you find that after the graph is drawn, multiple vertices end up at the exact same vertex locations?  Are you determining this visually or by programmatically looking at the Vertex.Location property?&lt;br /&gt;
&lt;br /&gt;
I'm not near a development computer and so I can't try your technique right now to determine if there might be a bug somewhere, but as an experiment, try inserting this line before you redraw the graph:&lt;br /&gt;
&lt;br /&gt;
nodeXLControl.Layout = new Smrf.NodeXL.Layouts.FruchtermanReingoldLayout();&lt;br /&gt;
&lt;br /&gt;
Does that change the results?&lt;br /&gt;
&lt;br /&gt;
-- Tony C&lt;br /&gt;
&lt;/div&gt;</description><author>tcap479</author><pubDate>Wed, 08 May 2013 14:25:32 GMT</pubDate><guid isPermaLink="false">New Post: NodeXLControl Vertices with same location when animating graph. 20130508022532P</guid></item><item><title>New Post: NodeXLControl Vertices with same location when animating graph.</title><link>http://nodexl.codeplex.com/discussions/442915</link><description>&lt;div style="line-height: normal;"&gt;Hello, &lt;br /&gt;
&lt;br /&gt;
I have written a C# Windows Form based application to display the memberOf links in active directory. The user wants to be able to show the hierarchy a level at a time and this is accomplished by creating additional vertices and edges and calling DrawGrapth(true) to re-render the graph for each iteration (a sort of step-by-step animation). &lt;br /&gt;
However, when I use this mechanism multiple vertices are created with the same location co-ordinates at each iteration. Does anyone have any idea why this might be happening and what can be done about it? &lt;br /&gt;
&lt;/div&gt;</description><author>TonyDaviesHP</author><pubDate>Wed, 08 May 2013 08:04:12 GMT</pubDate><guid isPermaLink="false">New Post: NodeXLControl Vertices with same location when animating graph. 20130508080412A</guid></item><item><title>New Post: How could we extract user/list network from public discussion forum</title><link>http://nodexl.codeplex.com/discussions/442584</link><description>&lt;div style="line-height: normal;"&gt;Thank you very much for the help. I really appreciate it.&lt;br /&gt;
&lt;br /&gt;
Best regards,&lt;br /&gt;
Romani&lt;br /&gt;
&lt;/div&gt;</description><author>romani</author><pubDate>Tue, 07 May 2013 20:52:01 GMT</pubDate><guid isPermaLink="false">New Post: How could we extract user/list network from public discussion forum 20130507085201P</guid></item><item><title>New Post: twitter rate limit and vertex relationship??</title><link>http://nodexl.codeplex.com/discussions/442740</link><description>&lt;div style="line-height: normal;"&gt;Hi Marc and Tony, &lt;br /&gt;
&lt;br /&gt;
Thank you so much for all your help and input! Tony you were right, I unchecked the edge option for relationships and I got all the data I wanted right away. Also the relationship column now tells me whether it was a tweet, mention, etc., and that's what I was looking for. Before, I was just getting &amp;quot;follows&amp;quot; and for the &amp;quot;relationship date&amp;quot; I was just getting that exact date and time when the data was imported--so all the data had the same date. Now I got all the correct info. Thanks again!&lt;br /&gt;
&lt;br /&gt;
Marc, thanks a bunch for the graph! Looks great so far and am looking forward to really examining it!&lt;br /&gt;
&lt;br /&gt;
Will let you know if I have any more questions.&lt;br /&gt;
Thanks to both for such quick replies.&lt;br /&gt;
-Aliya&lt;br /&gt;
&lt;/div&gt;</description><author>kyoki5290</author><pubDate>Tue, 07 May 2013 14:32:11 GMT</pubDate><guid isPermaLink="false">New Post: twitter rate limit and vertex relationship?? 20130507023211P</guid></item><item><title>New Post: twitter rate limit and vertex relationship??</title><link>http://nodexl.codeplex.com/discussions/442740</link><description>&lt;div style="line-height: normal;"&gt;Kyoki:&lt;br /&gt;
&lt;br /&gt;
You are using a recent version of NodeXL that severely limits some of the information you can get from Twitter in a reasonable period of time.  This is due to changes imposed by Twitter on programs like NodeXL.  A discussion about this issue can be found at &lt;a href="http://nodexl.codeplex.com/discussions/437841" rel="nofollow"&gt;http://nodexl.codeplex.com/discussions/437841&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
The limit you are running into has to do with &amp;quot;following&amp;quot; relationships.  In the Import from Twitter Search Network dialog box, uncheck the edge option for such relationships and you will no longer encounter this 15-minute rate limit.  Of course, you won't get followed edges either, but there is nothing NodeXL can do about that.&lt;br /&gt;
&lt;br /&gt;
If you want &amp;quot;mentions&amp;quot; edges, &amp;quot;replies to&amp;quot; edges, and edges that aren't mentions or replies-to (which NodeXL arbitrarily calls &amp;quot;Tweet&amp;quot; edges), then check the corresponding checkboxes for those edges as well.  Those types of edges are not rate-limited.&lt;br /&gt;
&lt;br /&gt;
Note that the graph Marc created for you was done with an earlier version of NodeXL that was not subject to the same severe rate limits as recent versions, and so he was able to get followed edges for you.  If you try the same thing, it could take hours or even days to get the same network.&lt;br /&gt;
&lt;br /&gt;
-- Tony&lt;br /&gt;
&lt;/div&gt;</description><author>tcap479</author><pubDate>Tue, 07 May 2013 02:28:30 GMT</pubDate><guid isPermaLink="false">New Post: twitter rate limit and vertex relationship?? 20130507022830A</guid></item><item><title>New Post: Activate NodeXL Ribbon methods by VBA for Excel</title><link>http://nodexl.codeplex.com/discussions/442722</link><description>&lt;div style="line-height: normal;"&gt;I tried to do that once and failed.  The custom tab that NodeXL adds to the Ribbon is inaccessible from VBA, as far as I can tell.&lt;br /&gt;
&lt;br /&gt;
-- Tony&lt;br /&gt;
&lt;/div&gt;</description><author>tcap479</author><pubDate>Tue, 07 May 2013 02:09:04 GMT</pubDate><guid isPermaLink="false">New Post: Activate NodeXL Ribbon methods by VBA for Excel 20130507020904A</guid></item><item><title>New Post: twitter rate limit and vertex relationship??</title><link>http://nodexl.codeplex.com/discussions/442740</link><description>&lt;div style="line-height: normal;"&gt;The map of the Twitter search network query for constitution pbs is here:&lt;br /&gt;
&lt;a href="http://nodexlgraphgallery.org/Pages/Graph.aspx?graphID=4532" rel="nofollow"&gt;http://nodexlgraphgallery.org/Pages/Graph.aspx?graphID=4532&lt;/a&gt;&lt;br /&gt;
&lt;img src="http://nodexlgraphgallery.org/Images/Image.ashx?graphID=4532&amp;amp;type=f" alt="Image" /&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>MarcSmith</author><pubDate>Tue, 07 May 2013 01:54:10 GMT</pubDate><guid isPermaLink="false">New Post: twitter rate limit and vertex relationship?? 20130507015410A</guid></item><item><title>New Post: twitter rate limit and vertex relationship??</title><link>http://nodexl.codeplex.com/discussions/442740</link><description>&lt;div style="line-height: normal;"&gt;Hello!&lt;br /&gt;
&lt;br /&gt;
It could be that you have selected the &amp;quot;Add an edge for each: Follows relationship (slower).&amp;quot;&lt;br /&gt;
&lt;br /&gt;
That &amp;quot;slower&amp;quot; is an understatement.&lt;br /&gt;
&lt;br /&gt;
Which version of the application are you running?  Are you logged in when you query?&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Marc&lt;br /&gt;
&lt;/div&gt;</description><author>MarcSmith</author><pubDate>Tue, 07 May 2013 01:06:24 GMT</pubDate><guid isPermaLink="false">New Post: twitter rate limit and vertex relationship?? 20130507010624A</guid></item><item><title>New Post: twitter rate limit and vertex relationship??</title><link>http://nodexl.codeplex.com/discussions/442740</link><description>&lt;div style="line-height: normal;"&gt;Hi, I am trying to configure some data from twitter on posts that mention, include, tweet or retweet posts with the keywords &amp;quot;constitution pbs&amp;quot;. I have done a manual search on twitter and know that there are hundreds of such posts (some of them being mine). However, when I try to import data from twitter, I am almost immediately given the &amp;quot;rate limit exceeded&amp;quot; warning and have to wait 15 minutes. &lt;br /&gt;
&lt;br /&gt;
After that, I only have partial information which gives me data to about 50 rows (my tweets do not show up on the data for some reason). I know there is tons of data but how can I import all of it? I have read various forums on this issue but haven't found a solution. After I click &amp;quot;import from twitter search&amp;quot; a window pops up with many options. I have tried various options but they all yield the same result--very little data. &lt;br /&gt;
&lt;br /&gt;
Also, in the relationships column, I only see &amp;quot;following&amp;quot; concerning the first and second vertex. The first time I attempted this I got proper data which included &amp;quot;mentioned, tweeted&amp;quot; and etc. How can I get that data back?&lt;br /&gt;
&lt;br /&gt;
Hope this wasn't too confusing and thanks for all the help!&lt;br /&gt;
&lt;/div&gt;</description><author>kyoki5290</author><pubDate>Mon, 06 May 2013 22:00:59 GMT</pubDate><guid isPermaLink="false">New Post: twitter rate limit and vertex relationship?? 20130506100059P</guid></item><item><title>New Post: How could we extract user/list network from public discussion forum</title><link>http://nodexl.codeplex.com/discussions/442584</link><description>&lt;div style="line-height: normal;"&gt;The details of an edge list and how to import them into NodeXL is discussed in the book, Analyzing social media networks with NodeXL.&lt;br /&gt;
&lt;br /&gt;
The practical issues of collecting data from the message boards you listed involve some basic programming.  You will need to &amp;quot;scrape&amp;quot; these sites.  A programming language like Python can be useful for this process.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Marc&lt;br /&gt;
&lt;/div&gt;</description><author>MarcSmith</author><pubDate>Mon, 06 May 2013 21:51:49 GMT</pubDate><guid isPermaLink="false">New Post: How could we extract user/list network from public discussion forum 20130506095149P</guid></item><item><title>New Post: How could we extract user/list network from public discussion forum</title><link>http://nodexl.codeplex.com/discussions/442584</link><description>&lt;div style="line-height: normal;"&gt;Dear Marc,&lt;br /&gt;
&lt;br /&gt;
Thank you very much for your help. I really appreciate it. I would be grateful if you just explain me how can I get reply networks in message boards. &lt;br /&gt;
Also how can I creat an edge list? Could you please introduce me some related sources. &lt;br /&gt;
We would like to extract data for example from the following forums:&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.ummah.com/forum/forum.php" rel="nofollow"&gt;http://www.ummah.com/forum/forum.php&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.allaturkaa.de/forum/index.php?page=Index&amp;amp;s=63f9e984148c281b0a9d53b9da66732919e26c2c" rel="nofollow"&gt;http://www.allaturkaa.de/forum/index.php?page=Index&amp;s=63f9e984148c281b0a9d53b9da66732919e26c2c&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://hyvers.hyves.nl/forum/" rel="nofollow"&gt;http://hyvers.hyves.nl/forum/&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://forums.marokko.nl/" rel="nofollow"&gt;http://forums.marokko.nl/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I am looking forward to hearing from you.&lt;br /&gt;
Best regards,&lt;br /&gt;
Romani&lt;br /&gt;
&lt;/div&gt;</description><author>romani</author><pubDate>Mon, 06 May 2013 21:47:07 GMT</pubDate><guid isPermaLink="false">New Post: How could we extract user/list network from public discussion forum 20130506094707P</guid></item><item><title>New Post: Color for Vertices?</title><link>http://nodexl.codeplex.com/discussions/442735</link><description>&lt;div style="line-height: normal;"&gt;Could it be that you have also created groups for this network?&lt;br /&gt;
&lt;br /&gt;
If so, try NodeXL &amp;gt; Analysis &amp;gt; Groups &amp;gt; Group Options &amp;gt; &lt;br /&gt;
&lt;br /&gt;
Set the &amp;quot;What colors should be used for the groups' vertices?&amp;quot; to &amp;quot;The colors specified in the Vertex Color column on the Vertices worksheet.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Do the same for shape, if you'd like to set that attribute at the vertex rather than group level.&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Marc&lt;br /&gt;
&lt;/div&gt;</description><author>MarcSmith</author><pubDate>Mon, 06 May 2013 21:41:23 GMT</pubDate><guid isPermaLink="false">New Post: Color for Vertices? 20130506094123P</guid></item></channel></rss>