Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Network Graphs in Tableau, using Alteryx

Karthik24
7 - Meteor

I am looking to prepare data for network analysis in Alteryx using R studio via Igraph library.

I used the code below to produce X and Y values but get the following Error.

 

library("igraph")

nodes<-read.Alteryx("#1", mode="data.frame")
edges<-read.Alteryx("#2", mode="data.frame")


net<-graph.data.frame(edges,nodes,directed=T) 

 

layout<-layout_with_fr(graph)

df<-data.frame(layout)
write.Alteryx(df,1)

 

------------------------------------

Error in 'net<-graph.data.frame(edges,nodes,directed=T) '

excecution halted.

 

Can anyone provide a guidance on how to produce Network Graph Data.

11 REPLIES 11
FinnCharlton
13 - Pulsar

@Karthik24 type 'yes' for all of those questions, and if it asks for a CRAN mirror select the default one

Karthik24
7 - Meteor

Thanks @FinnCharlton it got successfully installed  The downloaded binary packages are in
C:\Users\abc\AppData\Local\Temp\RtmpQfNWBh\downloaded_packages

 

I moved the downloaded packages to C:\Program Files\Alteryx\R-4.1.3

 

I am still getting the error in the same line wen I run Alteryx workflow.

Polls
We’re dying to get your help in determining what the new profile picture frame should be this Halloween. Cast your vote and help us haunt the Community with the best spooky character.
Don’t ghost us—pick your favorite now!
Labels