Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to integrate Sankey Chart created in R to Qlikview?

Hello,

I have created a Sankey Chart in R and want to integrate the same to my Qlikview dashboard. I have written the below Qlikview script but not able to get the chart into Qlikview dashboard.

Nodes:
LOAD * INLINE [
Name
CMB
LC
Others
]
;

Links:
LOAD * INLINE [
Source, Target, Value
0, 1, 10
0, 2, 20
]
;

STORE Nodes into "C:\Users\44015621\Desktop\Nodes.csv" (txt);
STORE Links into "C:\Users\44015621\Desktop\Links.csv" (txt);

EXECUTE "C:\Program Files\R\R-3.3.2\bin\i386\r.exe" CMD BATCH "C:\Users\44015621\Desktop\SankeyR.r";

Please let me know how it can be done.

Regards,

Ayandeep

0 Replies