Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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