julia plot code example
Example 1: julia plot histogram
histogram(randn(1000), bins = :scott, weights = repeat(1:5, outer = 200))
Example 2: julia programming plotting
z = rand(10)
plot!(x, z)
Example 3: julia programming plotting
x = 1:10; y = rand(10, 2) # 2 columns means two lines
plot(x, y)