ArXiver-Vizualized / js /visualization.js
takarajordan's picture
Upload 4 files
aa31781 verified
raw
history blame
237 Bytes
fetch('data/plot_data.json')
.then(response => response.json())
.then(plotData => {
Plotly.newPlot('plot',
plotData.data,
plotData.layout,
{displayModeBar: false}
);
});