JuliaPlots
Installation & Setup
import Pkg
Pkg.add("Plots")
using PlotsCreating a Plot
# Create a new plot
plot(arguments)
# Add to current plot using plot!
plot!(arguments)
# Add to plot (not necessarily current) using plt
plot!(plt, arguments)x = range(0, 10, length = 100)
y = sin.(x)
plot(x, y)
Adding/Modifying Plot Attributes

Saving Plots
Resources
Last updated
