Adding to subplots

Source code Author Update time

using Plots
gaston()

Note here the automatic grid layout, as well as the order in which new series are added to the plots.

plot(PlotsBase.fakedata(100, 10), layout = 4, palette = cgrad.([:grays :blues :heat :lightrainbow]), bg_inside = [:orange :pink :darkblue :black])
Gnuplot Produced by GNUPLOT 6.0 patchlevel 0 -7.5 -5.0 -2.5 0.0 2.5 5.0 7.5 0 25 50 75 100 gnuplot_plot_1a gnuplot_plot_2a gnuplot_plot_3a -10 -5 0 5 0 25 50 75 100 gnuplot_plot_1b gnuplot_plot_2b -2.5 0.0 2.5 5.0 0 25 50 75 100 gnuplot_plot_1c gnuplot_plot_2c gnuplot_plot_3c -5.0 -2.5 0.0 2.5 0 25 50 75 100 gnuplot_plot_1d gnuplot_plot_2d
using Random
Random.seed!(111)
plot!(PlotsBase.fakedata(100, 10))
Gnuplot Produced by GNUPLOT 6.0 patchlevel 0 -7.5 -5.0 -2.5 0.0 2.5 5.0 7.5 0 25 50 75 100 gnuplot_plot_1a gnuplot_plot_2a gnuplot_plot_3a gnuplot_plot_4a gnuplot_plot_5a gnuplot_plot_6a -10 -5 0 5 0 25 50 75 100 gnuplot_plot_1b gnuplot_plot_2b gnuplot_plot_3b gnuplot_plot_4b -6 -4 -2 0 2 4 6 0 25 50 75 100 gnuplot_plot_1c gnuplot_plot_2c gnuplot_plot_3c gnuplot_plot_4c gnuplot_plot_5c gnuplot_plot_6c -6 -4 -2 0 2 4 6 0 25 50 75 100 gnuplot_plot_1d gnuplot_plot_2d gnuplot_plot_3d gnuplot_plot_4d

This page was generated using DemoCards.jl and Literate.jl.