有向非循環グラフを表示するために d3.js と dagre-d3.js を実装する Julia パッケージをコーディングしています。スクリプトをWebページに印刷するパッケージ「D3Graphs.jl」があります。私のジュリアコードには次のものがあります:
print(io, """<script src=\"https://d3js.org/d3.v3.min.js\"></script>""")
これにより、d3 を使用できるようになりました。ただし、dagre-d3.js ( https://raw.githubusercontent.com/cpettitt/dagre-d3/master/dist/dagre-d3.js ) を使用しようとすると、機能しません。私は次のものを持っています:
print(io, """<script src=\"https://rawgit.com/cpettitt/dagre-d3/master/dist/dagre-d3.js\"></script>""")
rawgit バージョンと cdnjs の両方を使用し、https を http に変更しました。また、それを jypter ノートブックと同じフォルダーにアップロードしました。他にできることはありますか?ありがとうございました!