Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

[need help] Error occurs when creating Sankey diagram by R script

Hi Team,

I did data transform by creating a new table with DAX, and the format of new table is sankey format: Source, Target, Occurs(Please refer to below table1)

Table1:

sankeytable.jpg

Then I trying to create sankey diagram with R visulization, here is the script:

 

# The following code to create a dataframe and remove duplicated rows is always executed and acts as a preamble for your script:
 
dataset <- data.frame(Source, Target, Occurs)
dataset <- unique(dataset)
library(networkD3)
dataset$Source = as.character(dataset$Source)
dataset$Target = as.character(dataset$Target)
Sankeylinks<-dataset
Sankeynodes<-data.frame(name=unique(c(Sankeylinks$Source,Sankeylinks$Target)))
Sankeynodes$index<-0: (nrow(Sankeynodes) - 1)
Sankeylinks<-merge(Sankeylinks,Sankeynodes,by.x="Source",by.y="name")
Sankeylinks<-merge(Sankeylinks,Sankeynodes,by.x="Target",by.y="name")
Sankeydata<-Sankeylinks[,c(4,5,3)];
names(Sankeydata)<-c("Source","Target","Occurs")
Sankeyname<-Sankeynodes[,1,drop=FALSE]
# draw sankey network
sankeyNetwork(Links=Sankeydata,Nodes=Sankeyname,Source="Source",Target="Target",Value="Occurs",NodeId="name",fontsize=8,nodeWidth=20)
But there is error occured.
error.jpg
 
what is the issue with my script?
1 REPLY 1
v-evelk
Employee
Employee

Hi,

 

The error on your picture says that field name is unavailable.

Please check that you correctly typed all your fileds names.

Also, pay attention please that using fileds must be added to "Values" bucket to be available in a script regarding this article.

 

Kind Regards,

 

Evgenii Elkin,
Software Engineer
Microsoft Power BI Custom Visuals
pbicvsupport@microsoft.com

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors