Google Chart Sankey Diagram online for non software developers

I saw lots of tutorials of how to create a Sankey diagram but I couldn't find a quick way to see my data without installing or configuring parameters. Thus, here I present a Sankey Diagram to visualize your data. In case you are a software developer this may result to be something simple for you, but in case you don't have programming skills but want a Sankey diagram, this post is for you.

You have to upload a CSV file, comma separated in the format:

NodeA, NodeB, Weight

An example of a CSV file could be:

Root A,Branch X,3
Root B,Branch X,8
Root B,Branch Y,2
Root B,Branch Z,3
Branch X,End 1,19
Branch X,End 2,2
Branch X,End 3,4
Branch Y,End 1,10
Branch Y,End 4,17
Root B,Branch ZX,4
Branch ZX,End 1,1

This will create the following Graph:

Instructions of use:

Way one

  1. Click on Chose File and search for your CSV file.
  2. In the text field you will see your data loaded. You should see "NodeX1,NodeY1,N1;NodeX2,NodeY2,N2...
  3. Click in the button Process
  4. If you want to load a new csv file with the same name as the previous file, you should reload/refresh/F5 the webpage. (The code have some limitations at the moment)

Way two


  1. In the input text field write a line with the format NodeX1,NodeY1,Number1;NodeX2,NodeY2,Number2;...;NodeXN,NodeYN,NumberN
  2. Click in the button Process
  3. Notice that the input text line should finish in a number, not in a ";". Each";" represents a new link of the previous NodeX, NodeY, Weight. 



Process

Comentarios

Entradas populares de este blog

Deep neural networks visualization

Tensorflow Batch norm not working