Webapp use D3.js (Javascript) to load a dataset and show the console log

timchen
Level 1
Webapp use D3.js (Javascript) to load a dataset and show the console log

Hello,

I want to bring my D3 visualization to Dataiku by creating a Webapp, but I don't know how to make the dataset to the array like local D3 library.

const data = {
A: "./A.csv",
B: "./B.csv",
};
const promises = [d3.csv(data.A), d3.csv(data.B)];
 

 

I want to know how I can do the same thing in Dataiku Webapp. I checked few articles and discussion, but none of them has exact match to my question. 

I even try the sample code:

dataiku.fetch('my_dataset',
    function(dataFrame) {
         console.log("dataset load succeed");
         // action on load success
         console.log(dataFrame);
    }
);

 and I still don't know how it works. 

 

Another question is, how do I see the data in console.log() in Dataiku?

Thanks in advanced.

0 Kudos
1 Reply
FlorentD
Developer Advocate

Hi @timchen,

I am not sure to understand what does not work, or what you want to achieve.

Maybe this article (https://developer.dataiku.com/latest/tutorials/webapps/standard/adapt-d3js-template/index.html) could help you?

You will see the console.log messages in the console tab in your browser (developer tools of your browser).

I hope this helps

Best

0 Kudos