From ede2e9cdf1eb5674fd0b3c7e785a728481470a96 Mon Sep 17 00:00:00 2001 From: Aldo Date: Thu, 26 Sep 2024 15:01:45 +0200 Subject: [PATCH] update basic_example removing legend=False --- examples/basic_example.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/basic_example.jl b/examples/basic_example.jl index 694ffe7..62fce24 100644 --- a/examples/basic_example.jl +++ b/examples/basic_example.jl @@ -48,7 +48,7 @@ plot(data.real_gdp, title = "gdp", titlefont = 10) # Or we can plot multiple time series at once using the function `plot_data` ps = Bit.plot_data(data, quantities = [:real_gdp, :real_household_consumption, :real_government_consumption, :real_capitalformation, :real_exports, :real_imports, :wages, :euribor, :gdp_deflator]) -plot(ps..., layout = (3, 3), legend = false) +plot(ps..., layout = (3, 3)) # To run multiple monte-carlo repetitions in parallel we can use @@ -66,5 +66,5 @@ Threads.nthreads() # We can then plot the results of the monte-carlo repetitions using the function `plot_data_vector` ps = Bit.plot_data_vector(data_vector) -plot(ps..., legend = false) +plot(ps..., layout = (3, 3))