13 lines
390 B
Julia
13 lines
390 B
Julia
|
# This file was generated, do not modify it. # hide
|
||
|
using PlotlyJS
|
||
|
z = [10 10.625 12.5 15.625 20
|
||
|
5.625 6.25 8.125 11.25 15.625
|
||
|
2.5 3.125 5. 8.125 12.5
|
||
|
0.625 1.25 3.125 6.25 10.625
|
||
|
0 0.625 2.5 5.625 10]
|
||
|
|
||
|
data = contour(; z=z)
|
||
|
layout = Layout(; title="Basic Contour Plot")
|
||
|
plt = plot(data, layout)
|
||
|
|
||
|
fdplotly(json(plt)) # hide
|