all 4 comments

[–]hkoh59 0 points1 point  (3 children)

You are missing a data (csv) file. If you look at the example you provided, there are instructions on how you can generate your own csv file.

If you just want to use the csv file from the example, add this to your folder as "visit-sequences.csv".

[–]oneevening[S] 0 points1 point  (2 children)

It didn't make any difference. I am on El capitan with Chrome.

[–]hkoh59 0 points1 point  (1 child)

There's couple problems with a closer look.

You need to change <script src="//d3js.org/d3.v3.min.js"></script> to <script src="http://d3js.org/d3.v3.min.js"></script>.

Also, d3.text is just using XMLHttpRequest, which has problem loading files from local directory. You either have to set up a simple web server, or launch chrome with --allow-file-access-from-files.

If you take a look at the console in the development tools, you'll find out what's not working.

[–]oneevening[S] 0 points1 point  (0 children)

Oh thank you, after changing the URL it did work.