Network Analysis Tool
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi all
I've downloaded my contact data from LinkedIn, I was hoping to put it into the Network Analysis tool and show off my contacts etc. I keep getting
Error: Network Analysis (16): Tool #4: Error in graph.data.frame(d = x, directed = directed, vertices = vertices) :
When I try to do this.
Can anyone shed some light on what I should be doing? The workflow is attached. I am thinking it is something stupid like column names wrong, or a missing column or ....
Thanks for any input
Solved! Go to Solution.
- Labels:
- Predictive Analysis
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I think your problem is that dataset doesn't contain everything you need. For the Network Analysis tool you need a list of who is connected to who.
e.g.
From | To | Weight |
Adam Riley | Mickey Mouse | 1 |
Adam Riley | Donald Duck | 1 |
Adam Riley | Minnie Mouse | 1 |
Mickey Mouse | Minnie Mouse | 1 |
That dataset from LinkedIn is just everyone who is connected to you and not how they are connected to each other.
https://www.linkedin.com/in/adriley/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Nice challenge on a new tool :-)
Looks like you need to remove blanks, remove duplicates on the name and ensure name is called _name_
I've attached my module, you'll need to switch it back to you LinkedIn file as I've been using mine for testing.
Bear in mind you'll only have which companies each person is attached to, not their connections between each other.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks Chris, works a treat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Great job guys!
Is awesome how "flowery" you got!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Is there a way we can show a dynamic network visualisation tool in Powerpoint. Right now, we can only show a static image on a browser.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi Trao,
The only idea that I can find is to render to an HTML, then insert the HTML in Powerpoint.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi All,
I am trying to plug in my own dummy data into the current Alteryx “Network Analysis” sample workflow tool, but I’m running into the same error. I tried the same suggestions thats worked above, but it seems to still fail.
Any ideas?
_name_ | FirstName |
555-111-1111 | Alex |
555-222-2222 | Bob |
555-333-3333 | Christ |
555-444-4444 | Dan |
from | to | weight |
555-111-1111 | 555-222-2222 | 2 |
555-111-1111 | 555-333-3333 | 1 |
555-111-1111 | 555-444-4444 | 1 |
555-222-2222 | 555-222-2222 | 1 |
555-222-2222 | 555-333-3333 | 3 |
555-222-2222 | 555-444-4444 | 4 |
555-333-3333 | 555-333-3333 | 2 |
555-333-3333 | 555-444-4444 | 1 |
555-333-3333 | 555-666-6666 | 1 |
555-333-3333 | 555-222-2222 | 1 |
555-444-4444 | 555-333-3333 | 1 |
555-444-4444 | 555-222-2222 | 4 |
555-444-4444 | 555-555-5555 | 1 |
555-444-4444 | 555-666-6666 | 3 |
