I have a html chart that I want to present in zeppelin. I do this by using println(s”””%html”””+text) where text is a html file that has been put into a string using java.io. This works when the data can be put in a string in the html string in the text variable. However, when the html file wants to pull data from a file it doesn’t work because I don’t know where to put it. I get the error <h2>HTTP ERROR 404</h2> <p>Problem accessing /irisdataorig.csv. Reason: <pre> Not Found</pre></p><hr /><i><small>Powered by Jetty://</small></i><br/>
So the question is, where do I put my data file, and what string goes into the html so that it can be loaded by the html string in zeppelin? Thanks Dean